mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
fde9bd4a4d
struct netlink_callback has a const nlh pointer, make the pointer in struct genl_info const as well, to make copying between the two easier. Reviewed-by: Jiri Pirko <jiri@nvidia.com> Link: https://lore.kernel.org/r/20230814214723.2924989-3-kuba@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
26 lines
629 B
C
26 lines
629 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright Samuel Mendoza-Jonas, IBM Corporation 2018.
|
|
*/
|
|
|
|
#ifndef __NCSI_NETLINK_H__
|
|
#define __NCSI_NETLINK_H__
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include "internal.h"
|
|
|
|
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,
|
|
const struct nlmsghdr *nlhdr,
|
|
int err);
|
|
|
|
#endif /* __NCSI_NETLINK_H__ */
|