From: Ami Perlmutter Date: Tue, 15 May 2007 06:08:13 +0000 (+0300) Subject: IB/sdp: fix problem with sles9 backport (bugzilla 621) X-Git-Tag: v4.1.12-92~264^2~5^2~349 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fe27aff55e5615fbd690b4f4e4ae72697e55bcf5;p=users%2Fjedix%2Flinux-maple.git IB/sdp: fix problem with sles9 backport (bugzilla 621) Signed-off-by: Ami Perlmutter --- diff --git a/drivers/infiniband/ulp/sdp/sdp.h b/drivers/infiniband/ulp/sdp/sdp.h index 6626811a073b7..b40a3503f1cc2 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;