aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dcookies.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/dcookies.c')
-rw-r--r--fs/dcookies.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/fs/dcookies.c b/fs/dcookies.c
index f08375b97ffb..ab5954b50267 100644
--- a/fs/dcookies.c
+++ b/fs/dcookies.c
@@ -25,6 +25,7 @@
25#include <linux/dcookies.h> 25#include <linux/dcookies.h>
26#include <linux/mutex.h> 26#include <linux/mutex.h>
27#include <linux/path.h> 27#include <linux/path.h>
28#include <linux/compat.h>
28#include <asm/uaccess.h> 29#include <asm/uaccess.h>
29 30
30/* The dcookies are allocated from a kmem_cache and 31/* The dcookies are allocated from a kmem_cache and
@@ -202,6 +203,17 @@ out:
202 return err; 203 return err;
203} 204}
204 205
206#ifdef CONFIG_COMPAT
207COMPAT_SYSCALL_DEFINE4(lookup_dcookie, u32, w0, u32, w1, char __user *, buf, size_t, len)
208{
209#ifdef __BIG_ENDIAN
210 return sys_lookup_dcookie(((u64)w0 << 32) | w1, buf, len);
211#else
212 return sys_lookup_dcookie(((u64)w1 << 32) | w0, buf, len);
213#endif
214}
215#endif
216
205static int dcookie_init(void) 217static int dcookie_init(void)
206{ 218{
207 struct list_head * d; 219 struct list_head * d;