Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F157601964
D50390.id155646.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
747 B
Referenced Files
None
Subscribers
None
D50390.id155646.diff
View Options
diff --git a/sys/fs/nullfs/null_vnops.c b/sys/fs/nullfs/null_vnops.c
--- a/sys/fs/nullfs/null_vnops.c
+++ b/sys/fs/nullfs/null_vnops.c
@@ -385,7 +385,7 @@
{
struct componentname *cnp = ap->a_cnp;
struct vnode *dvp = ap->a_dvp;
- int flags = cnp->cn_flags;
+ uint64_t flags = cnp->cn_flags;
struct vnode *vp, *ldvp, *lvp;
struct mount *mp;
int error;
@@ -411,8 +411,8 @@
*/
if ((ldvp->v_vflag & VV_ROOT) != 0 && (flags & ISDOTDOT) != 0) {
KASSERT((dvp->v_vflag & VV_ROOT) == 0,
- ("ldvp %p fl %#x dvp %p fl %#x flags %#x",
- ldvp, ldvp->v_vflag, dvp, dvp->v_vflag, flags));
+ ("ldvp %p fl %#x dvp %p fl %#x flags %#jx",
+ ldvp, ldvp->v_vflag, dvp, dvp->v_vflag, (uintmax_t)flags));
return (ENOENT);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, May 24, 7:34 AM (14 h, 22 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33466359
Default Alt Text
D50390.id155646.diff (747 B)
Attached To
Mode
D50390: nullfs lookup: cn_flags is 64bit
Attached
Detach File
Event Timeline
Log In to Comment