projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbfb2df
)
ecryptfs: fasync BKL pushdown
author
Jonathan Corbet
<corbet@lwn.net>
Thu, 19 Jun 2008 22:18:25 +0000
(16:18 -0600)
committer
Jonathan Corbet
<corbet@lwn.net>
Wed, 2 Jul 2008 21:06:28 +0000
(15:06 -0600)
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
fs/ecryptfs/file.c
patch
|
blob
|
history
diff --git
a/fs/ecryptfs/file.c
b/fs/ecryptfs/file.c
index
2258b8f
..
24749bf
100644
(file)
--- a/
fs/ecryptfs/file.c
+++ b/
fs/ecryptfs/file.c
@@
-30,6
+30,7
@@
#include <linux/security.h>
#include <linux/compat.h>
#include <linux/fs_stack.h>
+#include <linux/smp_lock.h>
#include "ecryptfs_kernel.h"
/**
@@
-277,9
+278,11
@@
static int ecryptfs_fasync(int fd, struct file *file, int flag)
int rc = 0;
struct file *lower_file = NULL;
+ lock_kernel();
lower_file = ecryptfs_file_to_lower(file);
if (lower_file->f_op && lower_file->f_op->fasync)
rc = lower_file->f_op->fasync(fd, lower_file, flag);
+ unlock_kernel();
return rc;
}