2019-05-27 06:55:01 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2018-03-05 00:39:05 +00:00
|
|
|
/*
|
|
|
|
* Copyright Samuel Mendoza-Jonas, IBM Corporation 2018.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NCSI_NETLINK_H__
|
|
|
|
#define __NCSI_NETLINK_H__
|
|
|
|
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
2018-10-11 18:07:37 +00:00
|
|
|
int ncsi_send_netlink_rsp(struct ncsi_request *nr,
|
|
|
|
struct ncsi_package *np,
|
|
|
|
struct ncsi_channel *nc);
|
|
|
|
int ncsi_send_netlink_timeout(struct ncsi_request *nr,
|
|
|
|
struct ncsi_package *np,
|
|
|
|
struct ncsi_channel *nc);
|
|
|
|
int ncsi_send_netlink_err(struct net_device *dev,
|
|
|
|
u32 snd_seq,
|
|
|
|
u32 snd_portid,
|
|
|
|
struct nlmsghdr *nlhdr,
|
|
|
|
int err);
|
|
|
|
|
2018-03-05 00:39:05 +00:00
|
|
|
int ncsi_init_netlink(struct net_device *dev);
|
|
|
|
int ncsi_unregister_netlink(struct net_device *dev);
|
|
|
|
|
|
|
|
#endif /* __NCSI_NETLINK_H__ */
|