Release 4.11 fs/hfsplus/xattr_user.c
/*
* linux/fs/hfsplus/xattr_user.c
*
* Vyacheslav Dubeyko <slava@dubeyko.com>
*
* Handler for user extended attributes.
*/
#include <linux/nls.h>
#include "hfsplus_fs.h"
#include "xattr.h"
static int hfsplus_user_getxattr(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
{
return hfsplus_getxattr(inode, name, buffer, size,
XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vyacheslav Dubeyko | 32 | 64.00% | 1 | 25.00% |
Al Viro | 7 | 14.00% | 1 | 25.00% |
Andreas Gruenbacher | 6 | 12.00% | 1 | 25.00% |
Fabian Frederick | 5 | 10.00% | 1 | 25.00% |
Total | 50 | 100.00% | 4 | 100.00% |
static int hfsplus_user_setxattr(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, const void *buffer,
size_t size, int flags)
{
return hfsplus_setxattr(inode, name, buffer, size, flags,
XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vyacheslav Dubeyko | 38 | 67.86% | 1 | 25.00% |
Al Viro | 7 | 12.50% | 1 | 25.00% |
Andreas Gruenbacher | 6 | 10.71% | 1 | 25.00% |
Fabian Frederick | 5 | 8.93% | 1 | 25.00% |
Total | 56 | 100.00% | 4 | 100.00% |
const struct xattr_handler hfsplus_xattr_user_handler = {
.prefix = XATTR_USER_PREFIX,
.get = hfsplus_user_getxattr,
.set = hfsplus_user_setxattr,
};
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vyacheslav Dubeyko | 99 | 71.74% | 1 | 14.29% |
Al Viro | 14 | 10.14% | 2 | 28.57% |
Andreas Gruenbacher | 12 | 8.70% | 1 | 14.29% |
Fabian Frederick | 10 | 7.25% | 2 | 28.57% |
Hin-Tak Leung | 3 | 2.17% | 1 | 14.29% |
Total | 138 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.