diff options
Diffstat (limited to 'fs/9p')
-rw-r--r-- | fs/9p/vfs_inode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c index 890bed538f9b..1581fe218934 100644 --- a/fs/9p/vfs_inode.c +++ b/fs/9p/vfs_inode.c | |||
@@ -228,9 +228,9 @@ v9fs_blank_wstat(struct p9_wstat *wstat) | |||
228 | wstat->uid = NULL; | 228 | wstat->uid = NULL; |
229 | wstat->gid = NULL; | 229 | wstat->gid = NULL; |
230 | wstat->muid = NULL; | 230 | wstat->muid = NULL; |
231 | wstat->n_uid = ~0; | 231 | wstat->n_uid = INVALID_UID; |
232 | wstat->n_gid = ~0; | 232 | wstat->n_gid = INVALID_GID; |
233 | wstat->n_muid = ~0; | 233 | wstat->n_muid = INVALID_UID; |
234 | wstat->extension = NULL; | 234 | wstat->extension = NULL; |
235 | } | 235 | } |
236 | 236 | ||