mfd: palmas: Reset the POWERHOLD mux during power off
[linux-2.6/btrfs-unstable.git] / fs / hfsplus / xattr_trusted.c
blob94519d6c627df8b447cc468971520b5b73d05439
1 /*
2 * linux/fs/hfsplus/xattr_trusted.c
4 * Vyacheslav Dubeyko <slava@dubeyko.com>
6 * Handler for trusted extended attributes.
7 */
9 #include <linux/nls.h>
11 #include "hfsplus_fs.h"
12 #include "xattr.h"
14 static int hfsplus_trusted_getxattr(const struct xattr_handler *handler,
15 struct dentry *unused, struct inode *inode,
16 const char *name, void *buffer, size_t size)
18 return hfsplus_getxattr(inode, name, buffer, size,
19 XATTR_TRUSTED_PREFIX,
20 XATTR_TRUSTED_PREFIX_LEN);
23 static int hfsplus_trusted_setxattr(const struct xattr_handler *handler,
24 struct dentry *unused, struct inode *inode,
25 const char *name, const void *buffer,
26 size_t size, int flags)
28 return hfsplus_setxattr(inode, name, buffer, size, flags,
29 XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
32 const struct xattr_handler hfsplus_xattr_trusted_handler = {
33 .prefix = XATTR_TRUSTED_PREFIX,
34 .get = hfsplus_trusted_getxattr,
35 .set = hfsplus_trusted_setxattr,