Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Jul 2025 13:28:43 GMT
From:      Gleb Popov <arrowd@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: ab63bdaf1d1f - stable/14 - p9fs: Fix the build for 32-bit kernels
Message-ID:  <202507041328.564DShi4005776@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by arrowd:

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

commit ab63bdaf1d1f96a3a682886dccd13936a8cb0a5d
Author:     Doug Rabson <dfr@FreeBSD.org>
AuthorDate: 2024-06-19 14:15:34 +0000
Commit:     Gleb Popov <arrowd@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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202507041328.564DShi4005776>