diff options
author | Jan Kara <jack@suse.cz> | 2020-03-17 12:40:02 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@google.com> | 2020-11-15 15:49:06 +0100 |
commit | a151db2796df67b50b8ab0b4d899e4f79973fc88 (patch) | |
tree | f0cadb667dc36d43c6f753833f2dbd13a90a32b6 /fs/ext2 | |
parent | 740a6aa9a87431ac9f63eee54f5aa1e2ac88dc20 (diff) |
UPSTREAM: ext2: fix debug reference to ext2_xattr_cache
Fix a debug-only build error in ext2/xattr.c:
When building without extra debugging, (and with another patch that uses
no_printk() instead of <empty> for the ext2-xattr debug-print macros,
this build error happens:
../fs/ext2/xattr.c: In function ‘ext2_xattr_cache_insert’:
../fs/ext2/xattr.c:869:18: error: ‘ext2_xattr_cache’ undeclared (first use in
this function); did you mean ‘ext2_xattr_list’?
atomic_read(&ext2_xattr_cache->c_entry_count));
Fix the problem by removing cached entry count from the debug message
since otherwise we'd have to export the mbcache structure just for that.
Fixes: be0726d33cb8 ("ext2: convert to mbcache2")
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jan Kara <jack@suse.cz>
(cherry picked from commit 32302085a8d90859c40cf1a5e8313f575d06ec75)
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Change-Id: I22f4bc51d5f20631d4690f7daabcb893c2d79cf7
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'fs/ext2')
-rw-r--r-- | fs/ext2/xattr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext2/xattr.c b/fs/ext2/xattr.c index e66047d6943f..1435b0749f58 100644 --- a/fs/ext2/xattr.c +++ b/fs/ext2/xattr.c @@ -823,8 +823,7 @@ ext2_xattr_cache_insert(struct mb2_cache *cache, struct buffer_head *bh) error = mb2_cache_entry_create(cache, GFP_NOFS, hash, bh->b_blocknr); if (error) { if (error == -EBUSY) { - ea_bdebug(bh, "already in cache (%d cache entries)", - atomic_read(&ext2_xattr_cache->c_entry_count)); + ea_bdebug(bh, "already in cache"); error = 0; } } else |