]>
Commit | Line | Data |
---|---|---|
652ecc20 KK |
1 | /* |
2 | * JFFS2 -- Journalling Flash File System, Version 2. | |
aa98d7cf | 3 | * |
c00c310e | 4 | * Copyright © 2006 NEC Corporation |
aa98d7cf | 5 | * |
652ecc20 KK |
6 | * Created by KaiGai Kohei <[email protected]> |
7 | * | |
8 | * For licensing information, see the file 'LICENCE' in this directory. | |
9 | * | |
10 | */ | |
c00c310e | 11 | |
aa98d7cf KK |
12 | #include <linux/kernel.h> |
13 | #include <linux/fs.h> | |
14 | #include <linux/jffs2.h> | |
15 | #include <linux/xattr.h> | |
16 | #include <linux/mtd/mtd.h> | |
17 | #include "nodelist.h" | |
18 | ||
431547b3 CH |
19 | static int jffs2_user_getxattr(struct dentry *dentry, const char *name, |
20 | void *buffer, size_t size, int type) | |
aa98d7cf KK |
21 | { |
22 | if (!strcmp(name, "")) | |
23 | return -EINVAL; | |
431547b3 CH |
24 | return do_jffs2_getxattr(dentry->d_inode, JFFS2_XPREFIX_USER, |
25 | name, buffer, size); | |
aa98d7cf KK |
26 | } |
27 | ||
431547b3 CH |
28 | static int jffs2_user_setxattr(struct dentry *dentry, const char *name, |
29 | const void *buffer, size_t size, int flags, int type) | |
aa98d7cf KK |
30 | { |
31 | if (!strcmp(name, "")) | |
32 | return -EINVAL; | |
431547b3 CH |
33 | return do_jffs2_setxattr(dentry->d_inode, JFFS2_XPREFIX_USER, |
34 | name, buffer, size, flags); | |
aa98d7cf KK |
35 | } |
36 | ||
431547b3 CH |
37 | static size_t jffs2_user_listxattr(struct dentry *dentry, char *list, |
38 | size_t list_size, const char *name, size_t name_len, int type) | |
aa98d7cf KK |
39 | { |
40 | size_t retlen = XATTR_USER_PREFIX_LEN + name_len + 1; | |
41 | ||
42 | if (list && retlen <= list_size) { | |
43 | strcpy(list, XATTR_USER_PREFIX); | |
44 | strcpy(list + XATTR_USER_PREFIX_LEN, name); | |
45 | } | |
46 | ||
47 | return retlen; | |
48 | } | |
49 | ||
365f0cb9 | 50 | const struct xattr_handler jffs2_user_xattr_handler = { |
aa98d7cf KK |
51 | .prefix = XATTR_USER_PREFIX, |
52 | .list = jffs2_user_listxattr, | |
53 | .set = jffs2_user_setxattr, | |
54 | .get = jffs2_user_getxattr | |
55 | }; |