Symbol: MSS
drivers/gpib/common/iblib.c
376
const unsigned int MSS = status_byte & request_service_bit;
drivers/gpib/common/iblib.c
381
if (MSS == 0 && new_reason_for_service)
drivers/gpib/common/iblib.c
388
(MSS == 0 || (MSS && new_reason_for_service))) {
drivers/gpib/fmh_gpib/fmh_gpib.c
188
const int MSS = status & request_service_bit;
drivers/gpib/fmh_gpib/fmh_gpib.c
189
const int reqt = MSS && new_reason_for_service;
drivers/gpib/fmh_gpib/fmh_gpib.c
190
const int reqf = MSS == 0;
drivers/gpib/tnt4882/tnt4882_gpib.c
784
const int MSS = status & request_service_bit;
drivers/gpib/tnt4882/tnt4882_gpib.c
785
const int reqt = MSS && new_reason_for_service;
drivers/gpib/tnt4882/tnt4882_gpib.c
786
const int reqf = MSS == 0;
drivers/net/ethernet/amd/xgbe/xgbe-dev.c
1659
MSS, packet->mss);
drivers/net/ethernet/apm/xgene/xgene_enet_main.c
254
mss_index = GET_VAL(MSS, le64_to_cpu(raw_desc->m3));
drivers/net/ethernet/apm/xgene/xgene_enet_main.c
360
*hopinfo |= SET_BIT(ET) | SET_VAL(MSS, mss_index);
drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_io.c
186
FLOWC_PARAM(MSS, tp->mss_cache);
drivers/net/ethernet/huawei/hinic3/hinic3_tx.c
319
*queue_info |= cpu_to_le32(SQ_CTRL_QUEUE_INFO_SET(mss, MSS));
drivers/net/ethernet/huawei/hinic3/hinic3_tx.c
513
if (!SQ_CTRL_QUEUE_INFO_GET(wqe_desc->queue_info, MSS)) {
drivers/net/ethernet/huawei/hinic3/hinic3_tx.c
515
cpu_to_le32(SQ_CTRL_QUEUE_INFO_SET(HINIC3_TX_MSS_DEFAULT, MSS));
drivers/net/ethernet/huawei/hinic3/hinic3_tx.c
516
} else if (SQ_CTRL_QUEUE_INFO_GET(wqe_desc->queue_info, MSS) <
drivers/net/ethernet/huawei/hinic3/hinic3_tx.c
522
cpu_to_le32(SQ_CTRL_QUEUE_INFO_SET(HINIC3_TX_MSS_MIN, MSS));
drivers/staging/most/dim2/reg.h
22
u32 MSS; /* 0x08 */
tools/testing/selftests/drivers/net/gro.c
1192
int remainder = (MAX_PAYLOAD + offset) % MSS;
tools/testing/selftests/drivers/net/gro.c
1198
int remainder = (MAX_PAYLOAD + offset) % MSS;
tools/testing/selftests/drivers/net/gro.c
1381
int remainder = (MAX_PAYLOAD + offset) % MSS;
tools/testing/selftests/drivers/net/gro.c
1389
int remainder = (MAX_PAYLOAD + offset) % MSS;
tools/testing/selftests/drivers/net/gro.c
441
static char pkts[NUM_LARGE_PKT][TOTAL_HDR_LEN + MSS];
tools/testing/selftests/drivers/net/gro.c
442
static char last[TOTAL_HDR_LEN + MSS];
tools/testing/selftests/drivers/net/gro.c
443
static char new_seg[TOTAL_HDR_LEN + MSS];
tools/testing/selftests/drivers/net/gro.c
447
create_packet(pkts[i], i * MSS, 0, MSS, 0);
tools/testing/selftests/drivers/net/gro.c
448
create_packet(last, NUM_LARGE_PKT * MSS, 0, remainder, 0);
tools/testing/selftests/drivers/net/gro.c
449
create_packet(new_seg, (NUM_LARGE_PKT + 1) * MSS, 0, remainder, 0);
tools/testing/selftests/drivers/net/gro.c
452
write_packet(fd, pkts[i], total_hdr_len + MSS, daddr);
tools/testing/selftests/drivers/net/gro.c
92
#define NUM_LARGE_PKT (MAX_PAYLOAD / MSS)