cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

hsr_netlink.h (743B)


      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 * include file for HSR and PRP.
      8 */
      9
     10#ifndef __HSR_NETLINK_H
     11#define __HSR_NETLINK_H
     12
     13#include <linux/if_ether.h>
     14#include <linux/module.h>
     15#include <uapi/linux/hsr_netlink.h>
     16
     17struct hsr_priv;
     18struct hsr_port;
     19
     20int __init hsr_netlink_init(void);
     21void __exit hsr_netlink_exit(void);
     22
     23void hsr_nl_ringerror(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN],
     24		      struct hsr_port *port);
     25void hsr_nl_nodedown(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN]);
     26void hsr_nl_framedrop(int dropcount, int dev_idx);
     27void hsr_nl_linkdown(int dev_idx);
     28
     29#endif /* __HSR_NETLINK_H */