Release 4.7 fs/jffs2/xattr_user.c
/*
* JFFS2 -- Journalling Flash File System, Version 2.
*
* Copyright © 2006 NEC Corporation
*
* Created by KaiGai Kohei <kaigai@ak.jp.nec.com>
*
* For licensing information, see the file 'LICENCE' in this directory.
*
*/
#include <linux/kernel.h>
#include <linux/fs.h>
#include <linux/jffs2.h>
#include <linux/xattr.h>
#include <linux/mtd/mtd.h>
#include "nodelist.h"
static int jffs2_user_getxattr(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
{
return do_jffs2_getxattr(inode, JFFS2_XPREFIX_USER,
name, buffer, size);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
kaigai kohei | kaigai kohei | 34 | 70.83% | 1 | 25.00% |
al viro | al viro | 7 | 14.58% | 1 | 25.00% |
andreas gruenbacher | andreas gruenbacher | 6 | 12.50% | 1 | 25.00% |
christoph hellwig | christoph hellwig | 1 | 2.08% | 1 | 25.00% |
| Total | 48 | 100.00% | 4 | 100.00% |
static int jffs2_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 do_jffs2_setxattr(inode, JFFS2_XPREFIX_USER,
name, buffer, size, flags);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
kaigai kohei | kaigai kohei | 40 | 74.07% | 1 | 25.00% |
al viro | al viro | 7 | 12.96% | 1 | 25.00% |
andreas gruenbacher | andreas gruenbacher | 6 | 11.11% | 1 | 25.00% |
christoph hellwig | christoph hellwig | 1 | 1.85% | 1 | 25.00% |
| Total | 54 | 100.00% | 4 | 100.00% |
const struct xattr_handler jffs2_user_xattr_handler = {
.prefix = XATTR_USER_PREFIX,
.set = jffs2_user_setxattr,
.get = jffs2_user_getxattr
};
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
kaigai kohei | kaigai kohei | 113 | 79.02% | 1 | 14.29% |
al viro | al viro | 14 | 9.79% | 2 | 28.57% |
andreas gruenbacher | andreas gruenbacher | 12 | 8.39% | 1 | 14.29% |
christoph hellwig | christoph hellwig | 2 | 1.40% | 1 | 14.29% |
stephen hemminger | stephen hemminger | 1 | 0.70% | 1 | 14.29% |
david woodhouse | david woodhouse | 1 | 0.70% | 1 | 14.29% |
| Total | 143 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.