diff options
author | Scott Feldman <scofeldm@cisco.com> | 2008-11-22 00:29:01 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-22 00:29:01 -0500 |
commit | 845964515a76381e204d3399af82c149f8abcc1c (patch) | |
tree | 46f7f16c17294ccf56bd9f964e74a92cf7e7871e /drivers/net/enic | |
parent | cb3c766975985885e64e20cc72c4a36d90da2b30 (diff) |
enic: move wmb closer to where needed: before writing posted_index to hw
Signed-off-by: Scott Feldman <scofeldm@cisco.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/enic')
-rw-r--r-- | drivers/net/enic/enic_res.h | 4 | ||||
-rw-r--r-- | drivers/net/enic/vnic_rq.h | 9 | ||||
-rw-r--r-- | drivers/net/enic/vnic_wq.h | 9 |
3 files changed, 16 insertions, 6 deletions
diff --git a/drivers/net/enic/enic_res.h b/drivers/net/enic/enic_res.h index 68534a29b7ac..7bf272fa859b 100644 --- a/drivers/net/enic/enic_res.h +++ b/drivers/net/enic/enic_res.h | |||
@@ -58,8 +58,6 @@ static inline void enic_queue_wq_desc_ex(struct vnic_wq *wq, | |||
58 | (u16)vlan_tag, | 58 | (u16)vlan_tag, |
59 | 0 /* loopback */); | 59 | 0 /* loopback */); |
60 | 60 | ||
61 | wmb(); | ||
62 | |||
63 | vnic_wq_post(wq, os_buf, dma_addr, len, sop, eop); | 61 | vnic_wq_post(wq, os_buf, dma_addr, len, sop, eop); |
64 | } | 62 | } |
65 | 63 | ||
@@ -127,8 +125,6 @@ static inline void enic_queue_rq_desc(struct vnic_rq *rq, | |||
127 | (u64)dma_addr | VNIC_PADDR_TARGET, | 125 | (u64)dma_addr | VNIC_PADDR_TARGET, |
128 | type, (u16)len); | 126 | type, (u16)len); |
129 | 127 | ||
130 | wmb(); | ||
131 | |||
132 | vnic_rq_post(rq, os_buf, os_buf_index, dma_addr, len); | 128 | vnic_rq_post(rq, os_buf, os_buf_index, dma_addr, len); |
133 | } | 129 | } |
134 | 130 | ||
diff --git a/drivers/net/enic/vnic_rq.h b/drivers/net/enic/vnic_rq.h index 82bfca67cc4d..fd0ef66d2e9f 100644 --- a/drivers/net/enic/vnic_rq.h +++ b/drivers/net/enic/vnic_rq.h | |||
@@ -132,8 +132,15 @@ static inline void vnic_rq_post(struct vnic_rq *rq, | |||
132 | #define VNIC_RQ_RETURN_RATE 0xf /* keep 2^n - 1 */ | 132 | #define VNIC_RQ_RETURN_RATE 0xf /* keep 2^n - 1 */ |
133 | #endif | 133 | #endif |
134 | 134 | ||
135 | if ((buf->index & VNIC_RQ_RETURN_RATE) == 0) | 135 | if ((buf->index & VNIC_RQ_RETURN_RATE) == 0) { |
136 | /* Adding write memory barrier prevents compiler and/or CPU | ||
137 | * reordering, thus avoiding descriptor posting before | ||
138 | * descriptor is initialized. Otherwise, hardware can read | ||
139 | * stale descriptor fields. | ||
140 | */ | ||
141 | wmb(); | ||
136 | iowrite32(buf->index, &rq->ctrl->posted_index); | 142 | iowrite32(buf->index, &rq->ctrl->posted_index); |
143 | } | ||
137 | } | 144 | } |
138 | 145 | ||
139 | static inline void vnic_rq_return_descs(struct vnic_rq *rq, unsigned int count) | 146 | static inline void vnic_rq_return_descs(struct vnic_rq *rq, unsigned int count) |
diff --git a/drivers/net/enic/vnic_wq.h b/drivers/net/enic/vnic_wq.h index 7081828d8a42..c826137dc651 100644 --- a/drivers/net/enic/vnic_wq.h +++ b/drivers/net/enic/vnic_wq.h | |||
@@ -108,8 +108,15 @@ static inline void vnic_wq_post(struct vnic_wq *wq, | |||
108 | buf->len = len; | 108 | buf->len = len; |
109 | 109 | ||
110 | buf = buf->next; | 110 | buf = buf->next; |
111 | if (eop) | 111 | if (eop) { |
112 | /* Adding write memory barrier prevents compiler and/or CPU | ||
113 | * reordering, thus avoiding descriptor posting before | ||
114 | * descriptor is initialized. Otherwise, hardware can read | ||
115 | * stale descriptor fields. | ||
116 | */ | ||
117 | wmb(); | ||
112 | iowrite32(buf->index, &wq->ctrl->posted_index); | 118 | iowrite32(buf->index, &wq->ctrl->posted_index); |
119 | } | ||
113 | wq->to_use = buf; | 120 | wq->to_use = buf; |
114 | 121 | ||
115 | wq->ring.desc_avail--; | 122 | wq->ring.desc_avail--; |