diff options
author | David S. Miller <davem@davemloft.net> | 2011-03-01 23:36:37 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-01 23:36:37 +0100 |
commit | 80c0bc9e37adfc892af82cb6aa8cace79f8a96cb (patch) | |
tree | 0f4abc233d9661e85c7c7ecb064a75a8f0984f1f /include/net | |
parent | ipv6: Change final dst lookup arg name to "can_sleep" (diff) | |
download | linux-80c0bc9e37adfc892af82cb6aa8cace79f8a96cb.tar.xz linux-80c0bc9e37adfc892af82cb6aa8cace79f8a96cb.zip |
xfrm: Kill XFRM_LOOKUP_WAIT flag.
This can be determined from the flow flags instead.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/dst.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/net/dst.h b/include/net/dst.h index 4fedffd7c56f..15d67c8d3ce8 100644 --- a/include/net/dst.h +++ b/include/net/dst.h @@ -421,8 +421,7 @@ extern void dst_init(void); /* Flags for xfrm_lookup flags argument. */ enum { - XFRM_LOOKUP_WAIT = 1 << 0, - XFRM_LOOKUP_ICMP = 1 << 1, + XFRM_LOOKUP_ICMP = 1 << 0, }; struct flowi; |