projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa9921e
)
net: Remove bogus barrier() in dst_allfrag().
author
David S. Miller
<davem@davemloft.net>
Tue, 8 Feb 2011 23:33:22 +0000
(15:33 -0800)
committer
David S. Miller
<davem@davemloft.net>
Tue, 8 Feb 2011 23:33:22 +0000
(15:33 -0800)
I simply missed this one when modifying the other dst
metric interfaces earlier.
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/dst.h
patch
|
blob
|
history
diff --git
a/include/net/dst.h
b/include/net/dst.h
index
e550195
..
e01855d
100644
(file)
--- a/
include/net/dst.h
+++ b/
include/net/dst.h
@@
-220,8
+220,6
@@
static inline u32
dst_allfrag(const struct dst_entry *dst)
{
int ret = dst_feature(dst, RTAX_FEATURE_ALLFRAG);
- /* Yes, _exactly_. This is paranoia. */
- barrier();
return ret;
}