Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.4-rc1 27 lines 707 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* Copyright 2011-2014 Autronica Fire and Security AS 3 * 4 * Author(s): 5 * 2011-2014 Arvid Brodin, arvid.brodin@alten.se 6 */ 7 8#ifndef __HSR_NETLINK_H 9#define __HSR_NETLINK_H 10 11#include <linux/if_ether.h> 12#include <linux/module.h> 13#include <uapi/linux/hsr_netlink.h> 14 15struct hsr_priv; 16struct hsr_port; 17 18int __init hsr_netlink_init(void); 19void __exit hsr_netlink_exit(void); 20 21void hsr_nl_ringerror(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN], 22 struct hsr_port *port); 23void hsr_nl_nodedown(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN]); 24void hsr_nl_framedrop(int dropcount, int dev_idx); 25void hsr_nl_linkdown(int dev_idx); 26 27#endif /* __HSR_NETLINK_H */