From fe27aff55e5615fbd690b4f4e4ae72697e55bcf5 Mon Sep 17 00:00:00 2001 From: Ami Perlmutter Date: Tue, 15 May 2007 09:08:13 +0300 Subject: [PATCH] IB/sdp: fix problem with sles9 backport (bugzilla 621) Signed-off-by: Ami Perlmutter --- drivers/infiniband/ulp/sdp/sdp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/infiniband/ulp/sdp/sdp.h b/drivers/infiniband/ulp/sdp/sdp.h index 6626811a073b..b40a3503f1cc 100644 --- a/drivers/infiniband/ulp/sdp/sdp.h +++ b/drivers/infiniband/ulp/sdp/sdp.h @@ -138,9 +138,6 @@ struct sdp_sock { unsigned tx_tail; struct ib_send_wr tx_wr; - struct ib_sge ibsge[SDP_MAX_SEND_SKB_FRAGS + 1]; - struct ib_wc ibwc[SDP_NUM_WC]; - /* SDP slow start */ int rcvbuf_scale; int sent_request; @@ -149,6 +146,9 @@ struct sdp_sock { int recv_request; int recv_frags; int send_frags; + + struct ib_sge ibsge[SDP_MAX_SEND_SKB_FRAGS + 1]; + struct ib_wc ibwc[SDP_NUM_WC]; }; extern struct proto sdp_proto; -- 2.50.1