~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/net/atm/lec_arpc.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  * Lec arp cache
  4  *
  5  * Marko Kiiskila <mkiiskila@yahoo.com>
  6  */
  7 #ifndef _LEC_ARP_H_
  8 #define _LEC_ARP_H_
  9 #include <linux/atm.h>
 10 #include <linux/atmdev.h>
 11 #include <linux/if_ether.h>
 12 #include <linux/atmlec.h>
 13 
 14 struct lec_arp_table {
 15         struct hlist_node next;         /* Linked entry list */
 16         unsigned char atm_addr[ATM_ESA_LEN];    /* Atm address */
 17         unsigned char mac_addr[ETH_ALEN];       /* Mac address */
 18         int is_rdesc;                   /* Mac address is a route descriptor */
 19         struct atm_vcc *vcc;            /* Vcc this entry is attached */
 20         struct atm_vcc *recv_vcc;       /* Vcc we receive data from */
 21 
 22         void (*old_push) (struct atm_vcc *vcc, struct sk_buff *skb);
 23                                         /* Push that leads to daemon */
 24 
 25         void (*old_recv_push) (struct atm_vcc *vcc, struct sk_buff *skb);
 26                                         /* Push that leads to daemon */
 27 
 28         unsigned long last_used;        /* For expiry */
 29         unsigned long timestamp;        /* Used for various timestamping things:
 30                                          * 1. FLUSH started
 31                                          *    (status=ESI_FLUSH_PENDING)
 32                                          * 2. Counting to
 33                                          *    max_unknown_frame_time
 34                                          *    (status=ESI_ARP_PENDING||
 35                                          *     status=ESI_VC_PENDING)
 36                                          */
 37         unsigned char no_tries;         /* No of times arp retry has been tried */
 38         unsigned char status;           /* Status of this entry */
 39         unsigned short flags;           /* Flags for this entry */
 40         unsigned short packets_flooded; /* Data packets flooded */
 41         unsigned long flush_tran_id;    /* Transaction id in flush protocol */
 42         struct timer_list timer;        /* Arping timer */
 43         struct lec_priv *priv;          /* Pointer back */
 44         u8 *tlvs;
 45         u32 sizeoftlvs;                 /*
 46                                          * LANE2: Each MAC address can have TLVs
 47                                          * associated with it.  sizeoftlvs tells
 48                                          * the length of the tlvs array
 49                                          */
 50         struct sk_buff_head tx_wait;    /* wait queue for outgoing packets */
 51         refcount_t usage;               /* usage count */
 52 };
 53 
 54 /*
 55  * LANE2: Template tlv struct for accessing
 56  * the tlvs in the lec_arp_table->tlvs array
 57  */
 58 struct tlv {
 59         u32 type;
 60         u8 length;
 61         u8 value[255];
 62 };
 63 
 64 /* Status fields */
 65 #define ESI_UNKNOWN 0           /*
 66                                  * Next packet sent to this mac address
 67                                  * causes ARP-request to be sent
 68                                  */
 69 #define ESI_ARP_PENDING 1       /*
 70                                  * There is no ATM address associated with this
 71                                  * 48-bit address.  The LE-ARP protocol is in
 72                                  * progress.
 73                                  */
 74 #define ESI_VC_PENDING 2        /*
 75                                  * There is a valid ATM address associated with
 76                                  * this 48-bit address but there is no VC set
 77                                  * up to that ATM address.  The signaling
 78                                  * protocol is in process.
 79                                  */
 80 #define ESI_FLUSH_PENDING 4     /*
 81                                  * The LEC has been notified of the FLUSH_START
 82                                  * status and it is assumed that the flush
 83                                  * protocol is in process.
 84                                  */
 85 #define ESI_FORWARD_DIRECT 5    /*
 86                                  * Either the Path Switching Delay (C22) has
 87                                  * elapsed or the LEC has notified the Mapping
 88                                  * that the flush protocol has completed.  In
 89                                  * either case, it is safe to forward packets
 90                                  * to this address via the data direct VC.
 91                                  */
 92 
 93 /* Flag values */
 94 #define LEC_REMOTE_FLAG      0x0001
 95 #define LEC_PERMANENT_FLAG   0x0002
 96 
 97 #endif /* _LEC_ARP_H_ */
 98 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php