diff options
author | David S. Miller <davem@davemloft.net> | 2011-02-08 18:33:22 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-08 18:33:22 -0500 |
commit | e7b66bdc02592f5573ade667e4d68ac6e7b0f9e1 (patch) | |
tree | 66008bbdacf067c8dfc63619656c554de8dd7cec | |
parent | fa9921e46fd52b78070dc67ce0d27ec301a90410 (diff) |
net: Remove bogus barrier() in dst_allfrag().
I simply missed this one when modifying the other dst
metric interfaces earlier.
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/net/dst.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/net/dst.h b/include/net/dst.h index e550195d4f86..e01855de21e8 100644 --- a/include/net/dst.h +++ b/include/net/dst.h | |||
@@ -220,8 +220,6 @@ static inline u32 | |||
220 | dst_allfrag(const struct dst_entry *dst) | 220 | dst_allfrag(const struct dst_entry *dst) |
221 | { | 221 | { |
222 | int ret = dst_feature(dst, RTAX_FEATURE_ALLFRAG); | 222 | int ret = dst_feature(dst, RTAX_FEATURE_ALLFRAG); |
223 | /* Yes, _exactly_. This is paranoia. */ | ||
224 | barrier(); | ||
225 | return ret; | 223 | return ret; |
226 | } | 224 | } |
227 | 225 | ||