Searched refs:recvd (Results 1 – 5 of 5) sorted by relevance
/linux-6.12.1/fs/nfs/ |
D | nfs2xdr.c | 95 u32 recvd, count; in decode_nfsdata() local 102 recvd = xdr_read_pages(xdr, count); in decode_nfsdata() 103 if (unlikely(count > recvd)) in decode_nfsdata() 111 "count %u > recvd %u\n", count, recvd); in decode_nfsdata() 112 count = recvd; in decode_nfsdata() 428 u32 length, recvd; in decode_path() local 437 recvd = xdr_read_pages(xdr, length); in decode_path() 438 if (unlikely(length > recvd)) in decode_path() 447 "length %u > received %u\n", length, recvd); in decode_path()
|
D | nfs3xdr.c | 228 u32 recvd, count; in decode_nfspath3() local 237 recvd = xdr_read_pages(xdr, count); in decode_nfspath3() 238 if (unlikely(count > recvd)) in decode_nfspath3() 248 "count %u > recvd %u\n", count, recvd); in decode_nfspath3() 1605 u32 eof, count, ocount, recvd; in decode_read3resok() local 1616 recvd = xdr_read_pages(xdr, count); in decode_read3resok() 1617 if (unlikely(count > recvd)) in decode_read3resok() 1629 "count %u > recvd %u\n", count, recvd); in decode_read3resok() 1630 count = recvd; in decode_read3resok()
|
D | nfs4xdr.c | 5341 uint32_t count, eof, recvd; in decode_read() local 5352 recvd = xdr_read_pages(xdr, count); in decode_read() 5353 if (count > recvd) { in decode_read() 5355 "count %u > recvd %u\n", count, recvd); in decode_read() 5356 count = recvd; in decode_read() 5383 u32 len, recvd; in decode_readlink() local 5400 recvd = xdr_read_pages(xdr, len); in decode_readlink() 5401 if (recvd < len) { in decode_readlink() 5403 "count %u > recvd %u\n", len, recvd); in decode_readlink() 6042 u32 recvd; in decode_layoutget() local [all …]
|
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/ |
D | sockmap_basic.c | 507 int expected, zero = 0, sent, recvd, avail; in test_sockmap_skb_verdict_fionread() local 549 recvd = recv_timeout(c1, &buf, sizeof(buf), SOCK_NONBLOCK, IO_TIMEOUT_SEC); in test_sockmap_skb_verdict_fionread() 550 ASSERT_EQ(recvd, sizeof(buf), "recv_timeout(c0)"); in test_sockmap_skb_verdict_fionread() 567 int err, c1, p1, zero = 0, sent, recvd, avail; in test_sockmap_skb_verdict_peek_helper() local 581 recvd = recv(c1, rcv, sizeof(rcv), MSG_PEEK); in test_sockmap_skb_verdict_peek_helper() 582 ASSERT_EQ(recvd, sizeof(rcv), "recv(c1)"); in test_sockmap_skb_verdict_peek_helper() 586 recvd = recv(c1, rcv, sizeof(rcv), 0); in test_sockmap_skb_verdict_peek_helper() 587 ASSERT_EQ(recvd, sizeof(rcv), "recv(p0)"); in test_sockmap_skb_verdict_peek_helper()
|
/linux-6.12.1/drivers/iio/pressure/ |
D | hsc030pa.c | 352 u32 recvd; in hsc_read_raw() local 360 recvd = get_unaligned_be32(data->buffer); in hsc_read_raw() 363 *val = FIELD_GET(HSC_PRESSURE_MASK, recvd); in hsc_read_raw() 366 *val = FIELD_GET(HSC_TEMPERATURE_MASK, recvd); in hsc_read_raw()
|