macvlan.c (c203e45f069af47ca7623e4dcd8c00bfba2722e4) | macvlan.c (82524746c27fa418c250a56dd7606b9d3fc79826) |
---|---|
1/* 2 * Copyright (c) 2007 Patrick McHardy <kaber@trash.net> 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License as 6 * published by the Free Software Foundation; either version 2 of 7 * the License, or (at your option) any later version. 8 * --- 6 unchanged lines hidden (view full) --- 15 */ 16#include <linux/kernel.h> 17#include <linux/types.h> 18#include <linux/module.h> 19#include <linux/init.h> 20#include <linux/errno.h> 21#include <linux/slab.h> 22#include <linux/string.h> | 1/* 2 * Copyright (c) 2007 Patrick McHardy <kaber@trash.net> 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License as 6 * published by the Free Software Foundation; either version 2 of 7 * the License, or (at your option) any later version. 8 * --- 6 unchanged lines hidden (view full) --- 15 */ 16#include <linux/kernel.h> 17#include <linux/types.h> 18#include <linux/module.h> 19#include <linux/init.h> 20#include <linux/errno.h> 21#include <linux/slab.h> 22#include <linux/string.h> |
23#include <linux/list.h> | 23#include <linux/rculist.h> |
24#include <linux/notifier.h> 25#include <linux/netdevice.h> 26#include <linux/etherdevice.h> 27#include <linux/ethtool.h> 28#include <linux/if_arp.h> 29#include <linux/if_link.h> 30#include <linux/if_macvlan.h> 31#include <net/rtnetlink.h> --- 498 unchanged lines hidden --- | 24#include <linux/notifier.h> 25#include <linux/netdevice.h> 26#include <linux/etherdevice.h> 27#include <linux/ethtool.h> 28#include <linux/if_arp.h> 29#include <linux/if_link.h> 30#include <linux/if_macvlan.h> 31#include <net/rtnetlink.h> --- 498 unchanged lines hidden --- |