summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Ahern <dsa@cumulusnetworks.com>2015-09-30 03:07:17 (GMT)
committerDavid S. Miller <davem@davemloft.net>2015-09-30 03:40:33 (GMT)
commitec539514e56284b21c47468f23f7d01ff882f51b (patch)
treeaa69aa8cbc18c73ad5304f0fe8e7e6747a5fb00c /include
parent93a7e7e837af6846052481da974320c19ab82e5c (diff)
downloadlinux-ec539514e56284b21c47468f23f7d01ff882f51b.tar.xz
net: Remove vrf header file
Move remaining structs to VRF driver and delete the vrf header file. Signed-off-by: David Ahern <dsa@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/vrf.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/include/net/vrf.h b/include/net/vrf.h
deleted file mode 100644
index e83fc38..0000000
--- a/include/net/vrf.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * include/net/net_vrf.h - adds vrf dev structure definitions
- * Copyright (c) 2015 Cumulus Networks
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- */
-
-#ifndef __LINUX_NET_VRF_H
-#define __LINUX_NET_VRF_H
-
-struct slave {
- struct list_head list;
- struct net_device *dev;
-};
-
-struct slave_queue {
- struct list_head all_slaves;
-};
-
-struct net_vrf {
- struct slave_queue queue;
- struct rtable *rth;
- u32 tb_id;
-};
-
-#endif /* __LINUX_NET_VRF_H */