View | Details | Raw Unified | Return to bug 183381
Collapse All | Expand All

(-)if_em.c (-3 / +1 lines)
Lines 1343-1352 Link Here
1343
	*/
1343
	*/
1344
	if (adapter->hw.mac.max_frame_size <= 2048)
1344
	if (adapter->hw.mac.max_frame_size <= 2048)
1345
		adapter->rx_mbuf_sz = MCLBYTES;
1345
		adapter->rx_mbuf_sz = MCLBYTES;
1346
	else if (adapter->hw.mac.max_frame_size <= 4096)
1346
	else
1347
		adapter->rx_mbuf_sz = MJUMPAGESIZE;
1347
		adapter->rx_mbuf_sz = MJUMPAGESIZE;
1348
	else
1349
		adapter->rx_mbuf_sz = MJUM9BYTES;
1350
1348
1351
	/* Prepare receive descriptors and buffers */
1349
	/* Prepare receive descriptors and buffers */
1352
	if (em_setup_receive_structures(adapter)) {
1350
	if (em_setup_receive_structures(adapter)) {

Return to bug 183381