diff options
author | David Howells <dhowells@redhat.com> | 2020-06-09 16:25:02 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2020-06-09 18:17:14 +0100 |
commit | fed79fd7834027c152a1491a42be252eb1c2a6b5 (patch) | |
tree | fac0c7cc3a6f5201cb58fe1892b6c9c4979e5412 /fs/afs/dir.c | |
parent | 9ca0652596bd924a4023db6b429a0aaaea629826 (diff) |
afs: Fix debugging statements with %px to be %p
Fix a couple of %px to be %p in debugging statements.
Fixes: e49c7b2f6de7 ("afs: Build an abstraction around an "operation" concept")
Fixes: 8a070a964877 ("afs: Detect cell aliases 1 - Cells with root volumes")
Reported-by: Kees Cook <keescook@chromium.org>
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'fs/afs/dir.c')
-rw-r--r-- | fs/afs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/dir.c b/fs/afs/dir.c index 25cbe0aeeec5..aa1d34141ea3 100644 --- a/fs/afs/dir.c +++ b/fs/afs/dir.c @@ -980,7 +980,7 @@ static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry, if (!IS_ERR_OR_NULL(inode)) fid = AFS_FS_I(inode)->fid; - _debug("splice %px", dentry->d_inode); + _debug("splice %p", dentry->d_inode); d = d_splice_alias(inode, dentry); if (!IS_ERR_OR_NULL(d)) { d->d_fsdata = dentry->d_fsdata; |