ena.h (79e1500276a993c8be857a6e32f0c05ec8f3cdc8) | ena.h (b72f1f4516896ad6da0ea74d146a56045de171f7) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2015-2020 Amazon.com, Inc. or its affiliates. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 315 unchanged lines hidden (view full) --- 324 union { 325 /* The maximum length the driver can push to the device (For LLQ) */ 326 uint8_t tx_max_header_size; 327 /* The maximum (and default) mbuf size for the Rx descriptor. */ 328 uint16_t rx_mbuf_sz; 329 330 }; 331 | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2015-2020 Amazon.com, Inc. or its affiliates. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 315 unchanged lines hidden (view full) --- 324 union { 325 /* The maximum length the driver can push to the device (For LLQ) */ 326 uint8_t tx_max_header_size; 327 /* The maximum (and default) mbuf size for the Rx descriptor. */ 328 uint16_t rx_mbuf_sz; 329 330 }; 331 |
332 bool first_interrupt; | 332 uint8_t first_interrupt; |
333 uint16_t no_interrupt_event_cnt; 334 335 struct ena_com_rx_buf_info ena_bufs[ENA_PKT_MAX_BUFS]; 336 337 struct ena_que *que; 338 struct lro_ctrl lro; 339 340 uint16_t next_to_use; --- 219 unchanged lines hidden --- | 333 uint16_t no_interrupt_event_cnt; 334 335 struct ena_com_rx_buf_info ena_bufs[ENA_PKT_MAX_BUFS]; 336 337 struct ena_que *que; 338 struct lro_ctrl lro; 339 340 uint16_t next_to_use; --- 219 unchanged lines hidden --- |