Merge branch 'for-2.6.26' of git://neil.brown.name/md
[pandora-kernel.git] / include / net / ipip.h
index 549e132..633ed4d 100644 (file)
@@ -24,6 +24,16 @@ struct ip_tunnel
        int                     mlink;
 
        struct ip_tunnel_parm   parms;
+
+       struct ip_tunnel_prl_entry      *prl;           /* potential router list */
+       unsigned int                    prl_count;      /* # of entries in PRL */
+};
+
+struct ip_tunnel_prl_entry
+{
+       struct ip_tunnel_prl_entry      *next;
+       __be32                          addr;
+       u16                             flags;
 };
 
 #define IPTUNNEL_XMIT() do {                                           \