diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-09 16:44:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-09 16:44:35 -0400 |
commit | 07e074503eba3ee657ab50a8c9497ddf90039e7e (patch) | |
tree | a2599b466e384d638775f99ebd26a88e13c75b90 /fs | |
parent | 983a5f84a4a11c8706ca70615125db711336b684 (diff) | |
parent | 39dfe6c6a5ce7defc00f11790efb758954042cea (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull more vfs fixes from Al Viro:
"Regression fix from Geert + yet another open-coded kernel_read()"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
ecryptfs: don't open-code kernel_read()
xtensa simdisk: Fix proc_create_data() conversion fallout
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ecryptfs/read_write.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/fs/ecryptfs/read_write.c b/fs/ecryptfs/read_write.c index 6a160539cd23..09fe622274e4 100644 --- a/fs/ecryptfs/read_write.c +++ b/fs/ecryptfs/read_write.c | |||
@@ -232,17 +232,10 @@ int ecryptfs_read_lower(char *data, loff_t offset, size_t size, | |||
232 | struct inode *ecryptfs_inode) | 232 | struct inode *ecryptfs_inode) |
233 | { | 233 | { |
234 | struct file *lower_file; | 234 | struct file *lower_file; |
235 | mm_segment_t fs_save; | ||
236 | ssize_t rc; | ||
237 | |||
238 | lower_file = ecryptfs_inode_to_private(ecryptfs_inode)->lower_file; | 235 | lower_file = ecryptfs_inode_to_private(ecryptfs_inode)->lower_file; |
239 | if (!lower_file) | 236 | if (!lower_file) |
240 | return -EIO; | 237 | return -EIO; |
241 | fs_save = get_fs(); | 238 | return kernel_read(lower_file, offset, data, size); |
242 | set_fs(get_ds()); | ||
243 | rc = vfs_read(lower_file, data, size, &offset); | ||
244 | set_fs(fs_save); | ||
245 | return rc; | ||
246 | } | 239 | } |
247 | 240 | ||
248 | /** | 241 | /** |