The branch stable/14 has been updated by arrowd:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=ab63bdaf1d1f96a3a682886dccd13936a8cb0a5d

commit ab63bdaf1d1f96a3a682886dccd13936a8cb0a5d
Author:     Doug Rabson <d...@freebsd.org>
AuthorDate: 2024-06-19 14:15:34 +0000
Commit:     Gleb Popov <arr...@freebsd.org>
CommitDate: 2025-07-04 13:28:05 +0000

    p9fs: Fix the build for 32-bit kernels
    
    MFC after: 3 months
    
    (cherry picked from commit b2ebcd19f467f518aa969b84527018c03fb0286e)
---
 sys/fs/p9fs/p9fs_vnops.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/fs/p9fs/p9fs_vnops.c b/sys/fs/p9fs/p9fs_vnops.c
index c1bea18d5eef..d17d7624aef1 100644
--- a/sys/fs/p9fs/p9fs_vnops.c
+++ b/sys/fs/p9fs/p9fs_vnops.c
@@ -1762,7 +1762,7 @@ p9fs_readdir(struct vop_readdir_args *ap)
        count = 0;
        clnt = np->p9fs_ses->clnt;
 
-       P9_DEBUG(VOPS, "%s: vp %p, offset %ld, resid %zd\n", __func__, vp, 
uio->uio_offset, uio->uio_resid);
+       P9_DEBUG(VOPS, "%s: vp %p, offset %jd, resid %zd\n", __func__, vp, 
(intmax_t) uio->uio_offset, uio->uio_resid);
 
        if (ap->a_uio->uio_iov->iov_len <= 0)
                return (EINVAL);

Reply via email to