aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse/dir.c
diff options
context:
space:
mode:
authorKhazhismel Kumykov <khazhy@google.com>2019-09-17 12:35:33 -0700
committerMiklos Szeredi <mszeredi@redhat.com>2019-09-24 15:28:01 +0200
commitdc69e98c241e1456e37d73b862f7b8b8900ba50f (patch)
tree3c310e8f0e44315f832ef7afe4eb04d65b56300f /fs/fuse/dir.c
parentfuse: on 64-bit store time in d_fsdata directly (diff)
downloadlinux-dev-dc69e98c241e1456e37d73b862f7b8b8900ba50f.tar.xz
linux-dev-dc69e98c241e1456e37d73b862f7b8b8900ba50f.zip
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/dir.c')
-rw-r--r--fs/fuse/dir.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c
index 58557d4817e9..d572c900bb0f 100644
--- a/fs/fuse/dir.c
+++ b/fs/fuse/dir.c
@@ -279,7 +279,8 @@ invalid:
#if BITS_PER_LONG < 64
static int fuse_dentry_init(struct dentry *dentry)
{
- dentry->d_fsdata = kzalloc(sizeof(union fuse_dentry), GFP_KERNEL);
+ dentry->d_fsdata = kzalloc(sizeof(union fuse_dentry),
+ GFP_KERNEL_ACCOUNT | __GFP_RECLAIMABLE);
return dentry->d_fsdata ? 0 : -ENOMEM;
}