cregit-Linux how code gets into the kernel

Release 4.13 fs/nfsd/nfsxdr.c

Directory: fs/nfsd
/*
 * XDR support for nfsd
 *
 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
 */

#include "vfs.h"
#include "xdr.h"
#include "auth.h"


#define NFSDDBG_FACILITY		NFSDDBG_XDR

/*
 * Mapping of S_IF* types to NFS file types
 */

static u32	nfs_ftypes[] = {
	NFNON,  NFCHR,  NFCHR, NFBAD,
	NFDIR,  NFBAD,  NFBLK, NFBAD,
	NFREG,  NFBAD,  NFLNK, NFBAD,
	NFSOCK, NFBAD,  NFLNK, NFBAD,
};


/*
 * XDR functions for basic NFS types
 */

static __be32 * decode_fh(__be32 *p, struct svc_fh *fhp) { fh_init(fhp, NFS_FHSIZE); memcpy(&fhp->fh_handle.fh_base, p, NFS_FHSIZE); fhp->fh_handle.fh_size = NFS_FHSIZE; /* FIXME: Look up export pointer here and verify * Sun Secure RPC if requested */ return p + (NFS_FHSIZE >> 2); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)5396.36%266.67%
Al Viro23.64%133.33%
Total55100.00%3100.00%

/* Helper function for NFSv2 ACL code */
__be32 *nfs2svc_decode_fh(__be32 *p, struct svc_fh *fhp) { return decode_fh(p, fhp); }

Contributors

PersonTokensPropCommitsCommitProp
Andreas Gruenbacher2191.30%150.00%
Al Viro28.70%150.00%
Total23100.00%2100.00%


static __be32 * encode_fh(__be32 *p, struct svc_fh *fhp) { memcpy(p, &fhp->fh_handle.fh_base, NFS_FHSIZE); return p + (NFS_FHSIZE>> 2); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)3794.87%266.67%
Al Viro25.13%133.33%
Total39100.00%3100.00%

/* * Decode a file name and make sure that the path contains * no slashes or null bytes. */
static __be32 * decode_filename(__be32 *p, char **namp, unsigned int *lenp) { char *name; unsigned int i; if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXNAMLEN)) != NULL) { for (i = 0, name = *namp; i < *lenp; i++, name++) { if (*name == '\0' || *name == '/') return NULL; } } return p; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)8794.57%125.00%
Al Viro22.17%125.00%
Chuck Lever22.17%125.00%
Linus Torvalds11.09%125.00%
Total92100.00%4100.00%


static __be32 * decode_pathname(__be32 *p, char **namp, unsigned int *lenp) { char *name; unsigned int i; if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXPATHLEN)) != NULL) { for (i = 0, name = *namp; i < *lenp; i++, name++) { if (*name == '\0') return NULL; } } return p; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)8294.25%125.00%
Chuck Lever22.30%125.00%
Al Viro22.30%125.00%
Neil Brown11.15%125.00%
Total87100.00%4100.00%


static __be32 * decode_sattr(__be32 *p, struct iattr *iap) { u32 tmp, tmp1; iap->ia_valid = 0; /* Sun client bug compatibility check: some sun clients seem to * put 0xffff in the mode field when they mean 0xffffffff. * Quoting the 4.4BSD nfs server code: Nah nah nah nah na nah. */ if ((tmp = ntohl(*p++)) != (u32)-1 && tmp != 0xffff) { iap->ia_valid |= ATTR_MODE; iap->ia_mode = tmp; } if ((tmp = ntohl(*p++)) != (u32)-1) { iap->ia_uid = make_kuid(&init_user_ns, tmp); if (uid_valid(iap->ia_uid)) iap->ia_valid |= ATTR_UID; } if ((tmp = ntohl(*p++)) != (u32)-1) { iap->ia_gid = make_kgid(&init_user_ns, tmp); if (gid_valid(iap->ia_gid)) iap->ia_valid |= ATTR_GID; } if ((tmp = ntohl(*p++)) != (u32)-1) { iap->ia_valid |= ATTR_SIZE; iap->ia_size = tmp; } tmp = ntohl(*p++); tmp1 = ntohl(*p++); if (tmp != (u32)-1 && tmp1 != (u32)-1) { iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET; iap->ia_atime.tv_sec = tmp; iap->ia_atime.tv_nsec = tmp1 * 1000; } tmp = ntohl(*p++); tmp1 = ntohl(*p++); if (tmp != (u32)-1 && tmp1 != (u32)-1) { iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET; iap->ia_mtime.tv_sec = tmp; iap->ia_mtime.tv_nsec = tmp1 * 1000; /* * Passing the invalid value useconds=1000000 for mtime * is a Sun convention for "set both mtime and atime to * current server time". It's needed to make permissions * checks for the "touch" program across v2 mounts to * Solaris and Irix boxes work correctly. See description of * sattr in section 6.1 of "NFS Illustrated" by * Brent Callaghan, Addison-Wesley, ISBN 0-201-32750-5 */ if (tmp1 == 1000000) iap->ia_valid &= ~(ATTR_ATIME_SET|ATTR_MTIME_SET); } return p; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)25975.51%116.67%
Eric W. Biedermann4011.66%116.67%
Andi Kleen205.83%116.67%
Andrew Morton185.25%116.67%
Jamie Lokier41.17%116.67%
Al Viro20.58%116.67%
Total343100.00%6100.00%


static __be32 * encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, struct kstat *stat) { struct dentry *dentry = fhp->fh_dentry; int type; struct timespec time; u32 f; type = (stat->mode & S_IFMT); *p++ = htonl(nfs_ftypes[type >> 12]); *p++ = htonl((u32) stat->mode); *p++ = htonl((u32) stat->nlink); *p++ = htonl((u32) from_kuid(&init_user_ns, stat->uid)); *p++ = htonl((u32) from_kgid(&init_user_ns, stat->gid)); if (S_ISLNK(type) && stat->size > NFS_MAXPATHLEN) { *p++ = htonl(NFS_MAXPATHLEN); } else { *p++ = htonl((u32) stat->size); } *p++ = htonl((u32) stat->blksize); if (S_ISCHR(type) || S_ISBLK(type)) *p++ = htonl(new_encode_dev(stat->rdev)); else *p++ = htonl(0xffffffff); *p++ = htonl((u32) stat->blocks); switch (fsid_source(fhp)) { default: case FSIDSOURCE_DEV: *p++ = htonl(new_encode_dev(stat->dev)); break; case FSIDSOURCE_FSID: *p++ = htonl((u32) fhp->fh_export->ex_fsid); break; case FSIDSOURCE_UUID: f = ((u32*)fhp->fh_export->ex_uuid)[0]; f ^= ((u32*)fhp->fh_export->ex_uuid)[1]; f ^= ((u32*)fhp->fh_export->ex_uuid)[2]; f ^= ((u32*)fhp->fh_export->ex_uuid)[3]; *p++ = htonl(f); break; } *p++ = htonl((u32) stat->ino); *p++ = htonl((u32) stat->atime.tv_sec); *p++ = htonl(stat->atime.tv_nsec ? stat->atime.tv_nsec / 1000 : 0); lease_get_mtime(d_inode(dentry), &time); *p++ = htonl((u32) time.tv_sec); *p++ = htonl(time.tv_nsec ? time.tv_nsec / 1000 : 0); *p++ = htonl((u32) stat->ctime.tv_sec); *p++ = htonl(stat->ctime.tv_nsec ? stat->ctime.tv_nsec / 1000 : 0); return p; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)20239.61%16.67%
Neil Brown12524.51%213.33%
Al Viro489.41%426.67%
Andi Kleen367.06%16.67%
Linus Torvalds316.08%213.33%
Jamie Lokier295.69%16.67%
David Shaw224.31%16.67%
Eric W. Biedermann122.35%16.67%
David Howells30.59%16.67%
J. Bruce Fields20.39%16.67%
Total510100.00%15100.00%

/* Helper function for NFSv2 ACL code */
__be32 *nfs2svc_encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, struct kstat *stat) { return encode_fattr(rqstp, p, fhp, stat); }

Contributors

PersonTokensPropCommitsCommitProp
Andreas Gruenbacher2670.27%125.00%
David Shaw513.51%125.00%
J. Bruce Fields410.81%125.00%
Al Viro25.41%125.00%
Total37100.00%4100.00%

/* * XDR decode functions */
int nfssvc_decode_void(struct svc_rqst *rqstp, __be32 *p) { return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2195.45%150.00%
Al Viro14.55%150.00%
Total22100.00%2100.00%


int nfssvc_decode_fhandle(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_fhandle *args = rqstp->rq_argp; p = decode_fh(p, &args->fh); if (!p) return 0; return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)3262.75%120.00%
Christoph Hellwig713.73%120.00%
Neil Brown611.76%120.00%
Benoit Taine59.80%120.00%
Al Viro11.96%120.00%
Total51100.00%5100.00%


int nfssvc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_sattrargs *args = rqstp->rq_argp; p = decode_fh(p, &args->fh); if (!p) return 0; p = decode_sattr(p, &args->attrs); return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4673.02%125.00%
Neil Brown914.29%125.00%
Christoph Hellwig711.11%125.00%
Al Viro11.59%125.00%
Total63100.00%4100.00%


int nfssvc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_diropargs *args = rqstp->rq_argp; if (!(p = decode_fh(p, &args->fh)) || !(p = decode_filename(p, &args->name, &args->len))) return 0; return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)6388.73%133.33%
Christoph Hellwig79.86%133.33%
Al Viro11.41%133.33%
Total71100.00%3100.00%


int nfssvc_decode_readargs(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_readargs *args = rqstp->rq_argp; unsigned int len; int v; p = decode_fh(p, &args->fh); if (!p) return 0; args->offset = ntohl(*p++); len = args->count = ntohl(*p++); p++; /* totalcount - unused */ len = min_t(unsigned int, len, NFSSVC_MAXBLKSIZE_V2); /* set up somewhere to store response. * We take pages, put them on reslist and include in iovec */ v=0; while (len > 0) { struct page *p = *(rqstp->rq_next_page++); rqstp->rq_vec[v].iov_base = page_address(p); rqstp->rq_vec[v].iov_len = min_t(unsigned int, len, PAGE_SIZE); len -= rqstp->rq_vec[v].iov_len; v++; } args->vlen = v; return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Neil Brown7040.00%541.67%
Linus Torvalds (pre-git)5933.71%18.33%
J. Bruce Fields179.71%216.67%
Kinglong Mee169.14%18.33%
Christoph Hellwig74.00%18.33%
Benoit Taine52.86%18.33%
Al Viro10.57%18.33%
Total175100.00%12100.00%


int nfssvc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_writeargs *args = rqstp->rq_argp; unsigned int len, hdr, dlen; struct kvec *head = rqstp->rq_arg.head; int v; p = decode_fh(p, &args->fh); if (!p) return 0; p++; /* beginoffset */ args->offset = ntohl(*p++); /* offset */ p++; /* totalcount */ len = args->len = ntohl(*p++); /* * The protocol specifies a maximum of 8192 bytes. */ if (len > NFSSVC_MAXBLKSIZE_V2) return 0; /* * Check to make sure that we got the right number of * bytes. */ hdr = (void*)p - head->iov_base; if (hdr > head->iov_len) return 0; dlen = head->iov_len + rqstp->rq_arg.page_len - hdr; /* * Round the length of the data which was specified up to * the next multiple of XDR units and then compare that * against the length which was actually received. * Note that when RPCSEC/GSS (for example) is used, the * data buffer can be padded so dlen might be larger * than required. It must never be smaller. */ if (dlen < XDR_QUADLEN(len)*4) return 0; rqstp->rq_vec[0].iov_base = (void*)p; rqstp->rq_vec[0].iov_len = head->iov_len - hdr; v = 0; while (len > rqstp->rq_vec[v].iov_len) { len -= rqstp->rq_vec[v].iov_len; v++; rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_pages[v]); rqstp->rq_vec[v].iov_len = PAGE_SIZE; } rqstp->rq_vec[v].iov_len = len; args->vlen = v + 1; return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Neil Brown10939.49%646.15%
Linus Torvalds (pre-git)7025.36%17.69%
Peter Staubach5921.38%17.69%
J. Bruce Fields259.06%215.38%
Christoph Hellwig72.54%17.69%
Benoit Taine51.81%17.69%
Al Viro10.36%17.69%
Total276100.00%13100.00%


int nfssvc_decode_createargs(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_createargs *args = rqstp->rq_argp; if ( !(p = decode_fh(p, &args->fh)) || !(p = decode_filename(p, &args->name, &args->len))) return 0; p = decode_sattr(p, &args->attrs); return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)7084.34%125.00%
Christoph Hellwig78.43%125.00%
Neil Brown56.02%125.00%
Al Viro11.20%125.00%
Total83100.00%4100.00%


int nfssvc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_renameargs *args = rqstp->rq_argp; if (!(p = decode_fh(p, &args->ffh)) || !(p = decode_filename(p, &args->fname, &args->flen)) || !(p = decode_fh(p, &args->tfh)) || !(p = decode_filename(p, &args->tname, &args->tlen))) return 0; return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)9892.45%133.33%
Christoph Hellwig76.60%133.33%
Al Viro10.94%133.33%
Total106100.00%3100.00%


int nfssvc_decode_readlinkargs(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_readlinkargs *args = rqstp->rq_argp; p = decode_fh(p, &args->fh); if (!p) return 0; args->buffer = page_address(*(rqstp->rq_next_page++)); return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Neil Brown4263.64%225.00%
J. Bruce Fields1015.15%225.00%
Christoph Hellwig710.61%112.50%
Benoit Taine57.58%112.50%
Linus Torvalds (pre-git)11.52%112.50%
Al Viro11.52%112.50%
Total66100.00%8100.00%


int nfssvc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_linkargs *args = rqstp->rq_argp; if (!(p = decode_fh(p, &args->ffh)) || !(p = decode_fh(p, &args->tfh)) || !(p = decode_filename(p, &args->tname, &args->tlen))) return 0; return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)7789.53%125.00%
Christoph Hellwig78.14%125.00%
Neil Brown11.16%125.00%
Al Viro11.16%125.00%
Total86100.00%4100.00%


int nfssvc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_symlinkargs *args = rqstp->rq_argp; if ( !(p = decode_fh(p, &args->ffh)) || !(p = decode_filename(p, &args->fname, &args->flen)) || !(p = decode_pathname(p, &args->tname, &args->tlen))) return 0; p = decode_sattr(p, &args->attrs); return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)9087.38%125.00%
Christoph Hellwig76.80%125.00%
Neil Brown54.85%125.00%
Al Viro10.97%125.00%
Total103100.00%4100.00%


int nfssvc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_readdirargs *args = rqstp->rq_argp; p = decode_fh(p, &args->fh); if (!p) return 0; args->cookie = ntohl(*p++); args->count = ntohl(*p++); args->count = min_t(u32, args->count, PAGE_SIZE); args->buffer = page_address(*(rqstp->rq_next_page++)); return xdr_argsize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)5452.43%111.11%
Neil Brown1918.45%222.22%
J. Bruce Fields109.71%222.22%
Kinglong Mee76.80%111.11%
Christoph Hellwig76.80%111.11%
Benoit Taine54.85%111.11%
Al Viro10.97%111.11%
Total103100.00%9100.00%

/* * XDR encode functions */
int nfssvc_encode_void(struct svc_rqst *rqstp, __be32 *p) { return xdr_ressize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2195.45%150.00%
Al Viro14.55%150.00%
Total22100.00%2100.00%


int nfssvc_encode_attrstat(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_attrstat *resp = rqstp->rq_resp; p = encode_fattr(rqstp, p, &resp->fh, &resp->stat); return xdr_ressize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)3570.00%116.67%
Christoph Hellwig714.00%116.67%
David Shaw510.00%116.67%
Neil Brown12.00%116.67%
Al Viro12.00%116.67%
Linus Torvalds12.00%116.67%
Total50100.00%6100.00%


int nfssvc_encode_diropres(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_diropres *resp = rqstp->rq_resp; p = encode_fh(p, &resp->fh); p = encode_fattr(rqstp, p, &resp->fh, &resp->stat); return xdr_ressize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4674.19%116.67%
Christoph Hellwig711.29%116.67%
David Shaw58.06%116.67%
Linus Torvalds23.23%116.67%
Al Viro11.61%116.67%
Neil Brown11.61%116.67%
Total62100.00%6100.00%


int nfssvc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_readlinkres *resp = rqstp->rq_resp; *p++ = htonl(resp->len); xdr_ressize_check(rqstp, p); rqstp->rq_res.page_len = resp->len; if (resp->len & 3) { /* need to pad the tail */ rqstp->rq_res.tail[0].iov_base = p; *p = 0; rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3); } return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Neil Brown6259.62%125.00%
Linus Torvalds (pre-git)3432.69%125.00%
Christoph Hellwig76.73%125.00%
Al Viro10.96%125.00%
Total104100.00%4100.00%


int nfssvc_encode_readres(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_readres *resp = rqstp->rq_resp; p = encode_fattr(rqstp, p, &resp->fh, &resp->stat); *p++ = htonl(resp->count); xdr_ressize_check(rqstp, p); /* now update rqstp->rq_res to reflect data as well */ rqstp->rq_res.page_len = resp->count; if (resp->count & 3) { /* need to pad the tail */ rqstp->rq_res.tail[0].iov_base = p; *p = 0; rqstp->rq_res.tail[0].iov_len = 4 - (resp->count&3); } return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Neil Brown6350.81%333.33%
Linus Torvalds (pre-git)4637.10%111.11%
Christoph Hellwig75.65%111.11%
David Shaw54.03%111.11%
Lucas De Marchi10.81%111.11%
Al Viro10.81%111.11%
Linus Torvalds10.81%111.11%
Total124100.00%9100.00%


int nfssvc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_readdirres *resp = rqstp->rq_resp; xdr_ressize_check(rqstp, p); p = resp->buffer; *p++ = 0; /* no more entries */ *p++ = htonl((resp->common.err == nfserr_eof)); rqstp->rq_res.page_len = (((unsigned long)p-1) & ~PAGE_MASK)+1; return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Neil Brown5462.79%350.00%
Linus Torvalds (pre-git)2427.91%116.67%
Christoph Hellwig78.14%116.67%
Al Viro11.16%116.67%
Total86100.00%6100.00%


int nfssvc_encode_statfsres(struct svc_rqst *rqstp, __be32 *p) { struct nfsd_statfsres *resp = rqstp->rq_resp; struct kstatfs *stat = &resp->stats; *p++ = htonl(NFSSVC_MAXBLKSIZE_V2); /* max transfer size */ *p++ = htonl(stat->f_bsize); *p++ = htonl(stat->f_blocks); *p++ = htonl(stat->f_bfree); *p++ = htonl(stat->f_bavail); return xdr_ressize_check(rqstp, p); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)8589.47%120.00%
Christoph Hellwig77.37%120.00%
Andrew Morton11.05%120.00%
Al Viro11.05%120.00%
Greg Banks11.05%120.00%
Total95100.00%5100.00%


int nfssvc_encode_entry(void *ccdv, const char *name, int namlen, loff_t offset, u64 ino, unsigned int d_type) { struct readdir_cd *ccd = ccdv; struct nfsd_readdirres *cd = container_of(ccd, struct nfsd_readdirres, common); __be32 *p = cd->buffer; int buflen, slen; /* dprintk("nfsd: entry(%.*s off %ld ino %ld)\n", namlen, name, offset, ino); */ if (offset > ~((u32) 0)) { cd->common.err = nfserr_fbig; return -EINVAL; } if (cd->offset) *cd->offset = htonl(offset); /* truncate filename */ namlen = min(namlen, NFS2_MAXNAMLEN); slen = XDR_QUADLEN(namlen); if ((buflen = cd->buflen - slen - 4) < 0) { cd->common.err = nfserr_toosmall; return -EINVAL; } if (ino > ~((u32) 0)) { cd->common.err = nfserr_fbig; return -EINVAL; } *p++ = xdr_one; /* mark entry present */ *p++ = htonl((u32) ino); /* file id */ p = xdr_encode_array(p, name, namlen);/* name length & name */ cd->offset = p; /* remember pointer */ *p++ = htonl(~0U); /* offset of next entry */ cd->buflen = buflen; cd->buffer = p; cd->common.err = nfs_ok; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)16666.14%330.00%
Neil Brown4618.33%220.00%
Peter Staubach2610.36%110.00%
Kinglong Mee62.39%110.00%
Al Viro51.99%110.00%
Andrew Morton10.40%110.00%
Linus Torvalds10.40%110.00%
Total251100.00%10100.00%

/* * XDR release functions */
void nfssvc_release_fhandle(struct svc_rqst *rqstp) { struct nfsd_fhandle *resp = rqstp->rq_resp; fh_put(&resp->fh); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1970.37%150.00%
Christoph Hellwig829.63%150.00%
Total27100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)192758.88%46.78%
Neil Brown62018.94%1627.12%
Christoph Hellwig1273.88%35.08%
Al Viro892.72%58.47%
Peter Staubach852.60%23.39%
J. Bruce Fields712.17%813.56%
Andi Kleen561.71%11.69%
Eric W. Biedermann521.59%11.69%
Andreas Gruenbacher491.50%11.69%
David Shaw421.28%11.69%
Linus Torvalds381.16%58.47%
Jamie Lokier331.01%11.69%
Kinglong Mee290.89%11.69%
Benoit Taine250.76%11.69%
Andrew Morton200.61%35.08%
Chuck Lever40.12%23.39%
David Howells30.09%11.69%
Boaz Harrosh10.03%11.69%
Lucas De Marchi10.03%11.69%
Greg Banks10.03%11.69%
Total3273100.00%59100.00%
Directory: fs/nfsd
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.