Searched refs:taglen (Results 1 – 8 of 8) sorted by relevance
/linux-2.6.39/fs/nfs/ |
D | callback.h | 44 unsigned int taglen; member 53 unsigned int taglen; member
|
D | callback_xdr.c | 152 status = decode_string(xdr, &hdr->taglen, &hdr->tag); in decode_compound_hdr_arg() 156 if (hdr->taglen > CB_OP_TAGLEN_MAXSZ - 12) { in decode_compound_hdr_arg() 158 __func__, hdr->taglen); in decode_compound_hdr_arg() 536 status = encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr_res() 801 hdr_res.taglen = hdr_arg.taglen; in nfs4_callback_compound()
|
D | nfs4xdr.c | 796 uint32_t taglen; member 828 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen; in encode_compound_hdr() 830 dprintk("encode_compound: tag=%.*s\n", (int)hdr->taglen, hdr->tag); in encode_compound_hdr() 831 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN); in encode_compound_hdr() 832 p = reserve_space(xdr, 4 + hdr->taglen + 8); in encode_compound_hdr() 833 p = xdr_encode_opaque(p, hdr->tag, hdr->taglen); in encode_compound_hdr() 2760 hdr->taglen = be32_to_cpup(p); in decode_compound_hdr() 2762 p = xdr_inline_decode(xdr, hdr->taglen + 4); in decode_compound_hdr() 2766 p += XDR_QUADLEN(hdr->taglen); in decode_compound_hdr()
|
/linux-2.6.39/fs/nfsd/ |
D | xdr4.h | 455 u32 taglen; member 470 u32 taglen; member
|
D | nfs4proc.c | 1053 resp->p += 2 + XDR_QUADLEN(args->taglen); in nfsd4_proc_compound() 1055 resp->taglen = args->taglen; in nfsd4_proc_compound()
|
D | nfs4xdr.c | 1419 READ32(argp->taglen); in nfsd4_decode_compound() 1420 READ_BUF(argp->taglen + 8); in nfsd4_decode_compound() 1421 SAVEMEM(argp->tag, argp->taglen); in nfsd4_decode_compound() 1425 if (argp->taglen > NFSD4_MAX_TAGLEN) in nfsd4_decode_compound() 3373 *p++ = htonl(resp->taglen); in nfs4svc_encode_compoundres() 3374 memcpy(p, resp->tag, resp->taglen); in nfs4svc_encode_compoundres() 3375 p += XDR_QUADLEN(resp->taglen); in nfs4svc_encode_compoundres()
|
/linux-2.6.39/scripts/mod/ |
D | modpost.c | 659 unsigned int taglen = strlen(tag); in get_next_modinfo() local 668 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo() 669 return p + taglen + 1; in get_next_modinfo()
|
/linux-2.6.39/kernel/ |
D | module.c | 1993 unsigned int taglen = strlen(tag); in get_modinfo() local 1998 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_modinfo() 1999 return p + taglen + 1; in get_modinfo()
|