Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F162185598
D50390.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.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
Sat, Jul 11, 4:50 PM (14 h, 5 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
34966763
Default Alt Text
D50390.diff (747 B)
Attached To
Mode
D50390: nullfs lookup: cn_flags is 64bit
Attached
Detach File
Event Timeline
Log In to Comment