diff options
author | Faisal Latif <faisal.latif@intel.com> | 2008-11-22 05:50:49 +0300 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2008-12-05 22:00:13 +0300 |
commit | 4a14f6a79f5110c6033f0c61d77d07c449c2d083 (patch) | |
tree | fe582f37fae182a2bec420e7af8312dfa8d01acb /drivers/infiniband/hw/nes/nes_cm.h | |
parent | 183ecfa3091cd4cdda329a7fe89d9544088f517d (diff) | |
download | linux-4a14f6a79f5110c6033f0c61d77d07c449c2d083.tar.xz |
RDMA/nes: Forward packets for a new connection with stale APBVT entry
Under heavy traffic, there is a small windows when an APBVT entry is
not yet removed and a new connection is established. Packets for the
new connection are dropped until APBVT entry is removed. This patch
will forward the packets instead of dropping them.
Signed-off-by: Faisal Latif <faisal.latif@intel.com>
Signed-off-by: Chien Tung <chien.tin.tung@intel.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/nes/nes_cm.h')
-rw-r--r-- | drivers/infiniband/hw/nes/nes_cm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/nes/nes_cm.h b/drivers/infiniband/hw/nes/nes_cm.h index 25e2493abc6a..3a20a7883976 100644 --- a/drivers/infiniband/hw/nes/nes_cm.h +++ b/drivers/infiniband/hw/nes/nes_cm.h @@ -397,7 +397,7 @@ struct nes_cm_ops { struct nes_cm_node *); int (*reject)(struct nes_cm_core *, struct ietf_mpa_frame *, struct nes_cm_node *); - void (*recv_pkt)(struct nes_cm_core *, struct nes_vnic *, + int (*recv_pkt)(struct nes_cm_core *, struct nes_vnic *, struct sk_buff *); int (*destroy_cm_core)(struct nes_cm_core *); int (*get)(struct nes_cm_core *); |