Home
last modified time | relevance | path

Searched refs:taglen (Results 1 – 8 of 8) sorted by relevance

/linux-3.4.99/fs/nfs/
Dcallback.h46 unsigned int taglen; member
55 unsigned int taglen; member
Dcallback_xdr.c155 status = decode_string(xdr, &hdr->taglen, &hdr->tag); in decode_compound_hdr_arg()
159 if (hdr->taglen > CB_OP_TAGLEN_MAXSZ - 12) { in decode_compound_hdr_arg()
161 __func__, hdr->taglen); in decode_compound_hdr_arg()
631 status = encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr_res()
887 hdr_res.taglen = hdr_arg.taglen; in nfs4_callback_compound()
Dnfs4xdr.c875 uint32_t taglen; member
936 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen; in encode_compound_hdr()
938 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN); in encode_compound_hdr()
939 encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr()
2942 hdr->taglen = be32_to_cpup(p); in decode_compound_hdr()
2944 p = xdr_inline_decode(xdr, hdr->taglen + 4); in decode_compound_hdr()
2948 p += XDR_QUADLEN(hdr->taglen); in decode_compound_hdr()
/linux-3.4.99/fs/nfsd/
Dxdr4.h494 u32 taglen; member
510 u32 taglen; member
Dnfs4xdr.c1583 READ32(argp->taglen); in nfsd4_decode_compound()
1584 READ_BUF(argp->taglen + 8); in nfsd4_decode_compound()
1585 SAVEMEM(argp->tag, argp->taglen); in nfsd4_decode_compound()
1589 if (argp->taglen > NFSD4_MAX_TAGLEN) in nfsd4_decode_compound()
3660 *p++ = htonl(resp->taglen); in nfs4svc_encode_compoundres()
3661 memcpy(p, resp->tag, resp->taglen); in nfs4svc_encode_compoundres()
3662 p += XDR_QUADLEN(resp->taglen); in nfs4svc_encode_compoundres()
Dnfs4proc.c1165 resp->p += 2 + XDR_QUADLEN(args->taglen); in nfsd4_proc_compound()
1167 resp->taglen = args->taglen; in nfsd4_proc_compound()
/linux-3.4.99/scripts/mod/
Dmodpost.c689 unsigned int taglen = strlen(tag); in get_next_modinfo() local
698 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo()
699 return p + taglen + 1; in get_next_modinfo()
/linux-3.4.99/kernel/
Dmodule.c2136 unsigned int taglen = strlen(tag); in get_modinfo() local
2141 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_modinfo()
2142 return p + taglen + 1; in get_modinfo()