diff options
Diffstat (limited to 'sys/dev/cxgbe/offload.h')
-rw-r--r-- | sys/dev/cxgbe/offload.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/dev/cxgbe/offload.h b/sys/dev/cxgbe/offload.h index b57c03f076b5..91a43785aaca 100644 --- a/sys/dev/cxgbe/offload.h +++ b/sys/dev/cxgbe/offload.h @@ -229,7 +229,17 @@ struct iw_tunables { struct tls_tunables { int inline_keys; - int combo_wrs; + union { + struct { + /* T6 only. */ + int combo_wrs; + }; + struct { + /* T7 only. */ + int short_records; + int partial_ghash; + }; + }; }; #ifdef TCP_OFFLOAD |