mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
filelock: fix name of file_lease slab cache
When struct file_lease was split out from struct file_lock, the name of the file_lock slab cache was copied to the new slab cache for file_lease. This name conflict causes confusion in /proc/slabinfo and /sys/kernel/slab. In particular, it caused failures in drgn's test case for slab cache merging. Link:9ad29fd864/tests/linux_kernel/helpers/test_slab.py (L81)
Fixes:c69ff40719
("filelock: split leases out of struct file_lock") Signed-off-by: Omar Sandoval <osandov@fb.com> Link: https://lore.kernel.org/r/2d1d053da1cafb3e7940c4f25952da4f0af34e38.1722293276.git.osandov@fb.com Reviewed-by: Chuck Lever <chuck.lever@oracle.com> Reviewed-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
98055bc359
commit
3f65f3c099
1 changed files with 1 additions and 1 deletions
|
@ -2984,7 +2984,7 @@ static int __init filelock_init(void)
|
|||
filelock_cache = kmem_cache_create("file_lock_cache",
|
||||
sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
|
||||
|
||||
filelease_cache = kmem_cache_create("file_lock_cache",
|
||||
filelease_cache = kmem_cache_create("file_lease_cache",
|
||||
sizeof(struct file_lease), 0, SLAB_PANIC, NULL);
|
||||
|
||||
for_each_possible_cpu(i) {
|
||||
|
|
Loading…
Reference in a new issue