Home
last modified time | relevance | path

Searched refs:RXRPC_JUMBO (Results 1 – 4 of 4) sorted by relevance

/linux/net/rxrpc/
H A Dpeer_event.c435 if (good < RXRPC_JUMBO(2) && bad > RXRPC_JUMBO(2)) in rxrpc_input_probe_for_pmtud()
436 trial = RXRPC_JUMBO(2); in rxrpc_input_probe_for_pmtud()
437 else if (good < RXRPC_JUMBO(4) && bad > RXRPC_JUMBO(4)) in rxrpc_input_probe_for_pmtud()
438 trial = RXRPC_JUMBO(4); in rxrpc_input_probe_for_pmtud()
439 else if (good < RXRPC_JUMBO(3) && bad > RXRPC_JUMBO(3)) in rxrpc_input_probe_for_pmtud()
440 trial = RXRPC_JUMBO(3); in rxrpc_input_probe_for_pmtud()
441 else if (good < RXRPC_JUMBO(6) && bad > RXRPC_JUMBO(6)) in rxrpc_input_probe_for_pmtud()
442 trial = RXRPC_JUMBO(6); in rxrpc_input_probe_for_pmtud()
443 else if (good < RXRPC_JUMBO(5) && bad > RXRPC_JUMBO(5)) in rxrpc_input_probe_for_pmtud()
444 trial = RXRPC_JUMBO(5); in rxrpc_input_probe_for_pmtud()
[all …]
H A Dmisc.c49 unsigned int rxrpc_rx_mtu = RXRPC_JUMBO(46);
H A Dprotocol.h102 #define RXRPC_JUMBO(N) ((int)sizeof(struct rxrpc_wire_header) + \ macro
H A Dpeer_object.c210 peer->max_data = umin(RXRPC_JUMBO(1), peer->if_mtu - peer->hdrsize); in rxrpc_assess_MTU_size()