diff options
author | Khazhismel Kumykov <khazhy@google.com> | 2019-09-17 12:35:33 -0700 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2019-09-24 15:28:01 +0200 |
commit | dc69e98c241e1456e37d73b862f7b8b8900ba50f (patch) | |
tree | 3c310e8f0e44315f832ef7afe4eb04d65b56300f /fs/fuse/inode.c | |
parent | 30c6a23d34cbe19162240e9f9c2c122ba807e58c (diff) | |
download | linux-dc69e98c241e1456e37d73b862f7b8b8900ba50f.tar.bz2 |
fuse: kmemcg account fs data
account per-file, dentry, and inode data
blockdev/superblock and temporary per-request data was left alone, as
this usually isn't accounted
Reviewed-by: Shakeel Butt <shakeelb@google.com>
Signed-off-by: Khazhismel Kumykov <khazhy@google.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/inode.c')
-rw-r--r-- | fs/fuse/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index 10d193b24fb8..51cb471f4dc3 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -66,7 +66,7 @@ static struct file_system_type fuseblk_fs_type; struct fuse_forget_link *fuse_alloc_forget(void) { - return kzalloc(sizeof(struct fuse_forget_link), GFP_KERNEL); + return kzalloc(sizeof(struct fuse_forget_link), GFP_KERNEL_ACCOUNT); } static struct inode *fuse_alloc_inode(struct super_block *sb) |