Contributors: 12
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Andreas Gruenbacher |
52 |
32.30% |
2 |
9.52% |
Anna Schumaker |
43 |
26.71% |
4 |
19.05% |
Christoph Hellwig |
21 |
13.04% |
1 |
4.76% |
Trond Myklebust |
9 |
5.59% |
2 |
9.52% |
David Howells |
8 |
4.97% |
2 |
9.52% |
Christian Brauner |
7 |
4.35% |
3 |
14.29% |
Linus Torvalds (pre-git) |
6 |
3.73% |
2 |
9.52% |
Peng Tao |
6 |
3.73% |
1 |
4.76% |
Andy Adamson |
4 |
2.48% |
1 |
4.76% |
Miklos Szeredi |
3 |
1.86% |
1 |
4.76% |
Scott Mayhew |
1 |
0.62% |
1 |
4.76% |
Greg Kroah-Hartman |
1 |
0.62% |
1 |
4.76% |
Total |
161 |
|
21 |
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2014 Anna Schumaker.
*
* NFSv3-specific filesystem definitions and declarations
*/
#ifndef __LINUX_FS_NFS_NFS3_FS_H
#define __LINUX_FS_NFS_NFS3_FS_H
/*
* nfs3acl.c
*/
#ifdef CONFIG_NFS_V3_ACL
extern struct posix_acl *nfs3_get_acl(struct inode *inode, int type, bool rcu);
extern int nfs3_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
struct posix_acl *acl, int type);
extern int nfs3_proc_setacls(struct inode *inode, struct posix_acl *acl,
struct posix_acl *dfacl);
extern ssize_t nfs3_listxattr(struct dentry *, char *, size_t);
#else
static inline int nfs3_proc_setacls(struct inode *inode, struct posix_acl *acl,
struct posix_acl *dfacl)
{
return 0;
}
#define nfs3_listxattr NULL
#endif /* CONFIG_NFS_V3_ACL */
/* nfs3client.c */
struct nfs_server *nfs3_create_server(struct fs_context *);
struct nfs_server *nfs3_clone_server(struct nfs_server *, struct nfs_fh *,
struct nfs_fattr *, rpc_authflavor_t);
/* nfs3super.c */
extern struct nfs_subversion nfs_v3;
#endif /* __LINUX_FS_NFS_NFS3_FS_H */