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

addr.h (654B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/* net/atm/addr.h - Local ATM address registry */
      3
      4/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
      5
      6
      7#ifndef NET_ATM_ADDR_H
      8#define NET_ATM_ADDR_H
      9
     10#include <linux/atm.h>
     11#include <linux/atmdev.h>
     12
     13void atm_reset_addr(struct atm_dev *dev, enum atm_addr_type_t type);
     14int atm_add_addr(struct atm_dev *dev, const struct sockaddr_atmsvc *addr,
     15		 enum atm_addr_type_t type);
     16int atm_del_addr(struct atm_dev *dev, const struct sockaddr_atmsvc *addr,
     17		 enum atm_addr_type_t type);
     18int atm_get_addr(struct atm_dev *dev, struct sockaddr_atmsvc __user *buf,
     19		 size_t size, enum atm_addr_type_t type);
     20
     21#endif