| .. | .. |
|---|
| 52 | 52 | /** Input queue to use to send this command. */ |
|---|
| 53 | 53 | u64 iq_no; |
|---|
| 54 | 54 | |
|---|
| 55 | | - /** Time to wait for Octeon software to respond to this control command. |
|---|
| 56 | | - * If wait_time is 0, OSI assumes no response is expected. |
|---|
| 57 | | - */ |
|---|
| 58 | | - size_t wait_time; |
|---|
| 59 | | - |
|---|
| 60 | 55 | /** The network device that issued the control command. */ |
|---|
| 61 | 56 | u64 netpndev; |
|---|
| 62 | 57 | |
|---|
| 63 | 58 | /** Callback function called when the command has been fetched */ |
|---|
| 64 | 59 | octnic_ctrl_pkt_cb_fn_t cb_fn; |
|---|
| 65 | 60 | |
|---|
| 66 | | - u32 status; |
|---|
| 67 | | - u16 *response_code; |
|---|
| 68 | | - struct completion *completion; |
|---|
| 61 | + u32 sc_status; |
|---|
| 69 | 62 | }; |
|---|
| 70 | 63 | |
|---|
| 71 | 64 | #define MAX_UDD_SIZE(nctrl) (sizeof((nctrl)->udd)) |
|---|