2011-03-21 05:58:24 -04:00
|
|
|
/*-
|
|
|
|
|
* Copyright (c) 2010 Isilon Systems, Inc.
|
|
|
|
|
* Copyright (c) 2010 iX Systems, Inc.
|
|
|
|
|
* Copyright (c) 2010 Panasas, Inc.
|
2019-10-15 07:14:14 -04:00
|
|
|
* Copyright (c) 2013-2019 Mellanox Technologies, Ltd.
|
2011-03-21 05:58:24 -04:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice unmodified, this list of conditions, and the following
|
|
|
|
|
* disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2015-10-20 15:08:26 -04:00
|
|
|
*
|
|
|
|
|
* $FreeBSD$
|
2011-03-21 05:58:24 -04:00
|
|
|
*/
|
|
|
|
|
#ifndef _LINUX_NETDEVICE_H_
|
|
|
|
|
#define _LINUX_NETDEVICE_H_
|
|
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
|
|
#include <net/if_types.h>
|
|
|
|
|
#include <net/if.h>
|
|
|
|
|
#include <net/if_var.h>
|
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
|
|
|
|
|
|
#include <linux/net.h>
|
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
|
|
2017-03-16 05:59:35 -04:00
|
|
|
#ifdef VIMAGE
|
|
|
|
|
#define init_net *vnet0
|
|
|
|
|
#else
|
|
|
|
|
#define init_net *((struct vnet *)0)
|
|
|
|
|
#endif
|
2011-03-21 05:58:24 -04:00
|
|
|
|
|
|
|
|
#define MAX_ADDR_LEN 20
|
|
|
|
|
|
|
|
|
|
#define net_device ifnet
|
|
|
|
|
|
|
|
|
|
#define rtnl_lock()
|
|
|
|
|
#define rtnl_unlock()
|
|
|
|
|
|
2021-03-21 17:18:34 -04:00
|
|
|
/* According to linux::ipoib_main.c. */
|
|
|
|
|
struct netdev_notifier_info {
|
|
|
|
|
struct net_device *dev;
|
2021-05-28 08:44:16 -04:00
|
|
|
struct ifnet *ifp;
|
2021-03-21 17:18:34 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static inline struct net_device *
|
|
|
|
|
netdev_notifier_info_to_dev(struct netdev_notifier_info *ni)
|
|
|
|
|
{
|
|
|
|
|
return (ni->dev);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-28 08:44:16 -04:00
|
|
|
static inline struct ifnet *
|
|
|
|
|
netdev_notifier_info_to_ifp(struct netdev_notifier_info *ni)
|
|
|
|
|
{
|
|
|
|
|
return (ni->ifp);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-21 17:18:34 -04:00
|
|
|
int register_netdevice_notifier(struct notifier_block *);
|
|
|
|
|
int register_inetaddr_notifier(struct notifier_block *);
|
|
|
|
|
int unregister_netdevice_notifier(struct notifier_block *);
|
|
|
|
|
int unregister_inetaddr_notifier(struct notifier_block *);
|
|
|
|
|
|
2011-03-21 05:58:24 -04:00
|
|
|
#endif /* _LINUX_NETDEVICE_H_ */
|