diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2015-11-17 01:07:57 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-12-08 22:41:36 -0500 |
commit | 21fc61c73c3903c4c312d0802da01ec2b323d174 (patch) | |
tree | a26c29e3fbb766f00b023724e9e5b8b9bba9b879 /fs/ext4/inode.c | |
parent | aa80deab33a8fb180e718f5e45514db19aade165 (diff) |
don't put symlink bodies in pagecache into highmem
kmap() in page_follow_link_light() needed to go - allowing to hold
an arbitrary number of kmaps for long is a great way to deadlocking
the system.
new helper (inode_nohighmem(inode)) needs to be used for pagecache
symlinks inodes; done for all in-tree cases. page_follow_link_light()
instrumented to yell about anything missed.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ext4/inode.c')
-rw-r--r-- | fs/ext4/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index ea433a7f4bca..b3bd912df6bf 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -4283,6 +4283,7 @@ struct inode *ext4_iget(struct super_block *sb, unsigned long ino) | |||
4283 | inode->i_op = &ext4_symlink_inode_operations; | 4283 | inode->i_op = &ext4_symlink_inode_operations; |
4284 | ext4_set_aops(inode); | 4284 | ext4_set_aops(inode); |
4285 | } | 4285 | } |
4286 | inode_nohighmem(inode); | ||
4286 | } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || | 4287 | } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || |
4287 | S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { | 4288 | S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { |
4288 | inode->i_op = &ext4_special_inode_operations; | 4289 | inode->i_op = &ext4_special_inode_operations; |