diff options
author | David Howells <dhowells@redhat.com> | 2019-04-25 15:26:52 +0200 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2019-05-07 17:48:44 +0200 |
commit | b134d687dd9369bb2407a23c6ecc9e0a15d8bb20 (patch) | |
tree | d47c8ca5259eb85c26b79756243469964ea19ff4 /fs/afs/super.c | |
parent | afs: Provide mount-time configurable byte-range file locking emulation (diff) | |
download | linux-b134d687dd9369bb2407a23c6ecc9e0a15d8bb20.tar.xz linux-b134d687dd9369bb2407a23c6ecc9e0a15d8bb20.zip |
afs: Log more information for "kAFS: AFS vnode with undefined type\n"
Log more information when "kAFS: AFS vnode with undefined type\n" is
displayed due to a vnode record being retrieved from the server that
appears to have a duff file type (usually 0). This prints more information
to try and help pin down the problem.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | fs/afs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/super.c b/fs/afs/super.c index 18334fa1a0d2..df5b0d8ef049 100644 --- a/fs/afs/super.c +++ b/fs/afs/super.c @@ -453,7 +453,7 @@ static int afs_fill_super(struct super_block *sb, struct afs_fs_context *ctx) fid.vnode = 1; fid.vnode_hi = 0; fid.unique = 1; - inode = afs_iget(sb, ctx->key, &fid, NULL, NULL, NULL); + inode = afs_iget(sb, ctx->key, &fid, NULL, NULL, NULL, NULL); } if (IS_ERR(inode)) |