* [PATCH 11/13] Add more `skb->dst' accessors
@ 2009-11-24 2:25 Arnaud Lacombe
0 siblings, 0 replies; only message in thread
From: Arnaud Lacombe @ 2009-11-24 2:25 UTC (permalink / raw)
To: mcgrof; +Cc: linux-wireless, lrodriguez
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
---
compat-2.6.31.h | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/compat-2.6.31.h b/compat-2.6.31.h
index a91e033..6b2dd5e 100644
--- a/compat-2.6.31.h
+++ b/compat-2.6.31.h
@@ -99,6 +99,21 @@ static inline void skb_dst_drop(struct sk_buff *skb)
skb->dst = NULL;
}
+static inline struct dst_entry *skb_dst(const struct sk_buff *skb)
+{
+ return (struct dst_entry *)skb->dst;
+}
+
+static inline void skb_dst_set(struct sk_buff *skb, struct dst_entry *dst)
+{
+ skb->dst = (unsigned long)dst;
+}
+
+static inline struct rtable *skb_rtable(const struct sk_buff *skb)
+{
+ return (struct rtable *)skb_dst(skb);
+}
+
extern int genl_register_family_with_ops(struct genl_family *family,
struct genl_ops *ops, size_t n_ops);
--
1.6.3.3.385.g60647.dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-11-24 2:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-24 2:25 [PATCH 11/13] Add more `skb->dst' accessors Arnaud Lacombe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).