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

TOMOYO Linux Cross Reference
Linux/include/uapi/linux/atm_tcp.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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 ] ~

Diff markup

Differences between /include/uapi/linux/atm_tcp.h (Architecture sparc64) and /include/uapi/linux/atm_tcp.h (Architecture mips)


  1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux      1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2 /* atm_tcp.h - Driver-specific declarations of      2 /* atm_tcp.h - Driver-specific declarations of the ATMTCP driver (for use by
  3                driver-specific utilities) */        3                driver-specific utilities) */
  4                                                     4 
  5 /* Written 1997-2000 by Werner Almesberger, EP      5 /* Written 1997-2000 by Werner Almesberger, EPFL LRC/ICA */
  6                                                     6 
  7                                                     7 
  8 #ifndef _UAPILINUX_ATM_TCP_H                        8 #ifndef _UAPILINUX_ATM_TCP_H
  9 #define _UAPILINUX_ATM_TCP_H                        9 #define _UAPILINUX_ATM_TCP_H
 10                                                    10 
 11 #include <linux/atmapi.h>                          11 #include <linux/atmapi.h>
 12 #include <linux/atm.h>                             12 #include <linux/atm.h>
 13 #include <linux/atmioc.h>                          13 #include <linux/atmioc.h>
 14 #include <linux/types.h>                           14 #include <linux/types.h>
 15                                                    15 
 16                                                    16 
 17 /*                                                 17 /*
 18  * All values in struct atmtcp_hdr are in netw     18  * All values in struct atmtcp_hdr are in network byte order
 19  */                                                19  */
 20                                                    20 
 21 struct atmtcp_hdr {                                21 struct atmtcp_hdr {
 22         __u16   vpi;                               22         __u16   vpi;
 23         __u16   vci;                               23         __u16   vci;
 24         __u32   length;         /* ... of data     24         __u32   length;         /* ... of data part */
 25 };                                                 25 };
 26                                                    26 
 27 /*                                                 27 /*
 28  * All values in struct atmtcp_command are in      28  * All values in struct atmtcp_command are in host byte order
 29  */                                                29  */
 30                                                    30 
 31 #define ATMTCP_HDR_MAGIC        (~0)    /* thi     31 #define ATMTCP_HDR_MAGIC        (~0)    /* this length indicates a command */
 32 #define ATMTCP_CTRL_OPEN        1       /* req     32 #define ATMTCP_CTRL_OPEN        1       /* request/reply */
 33 #define ATMTCP_CTRL_CLOSE       2       /* req     33 #define ATMTCP_CTRL_CLOSE       2       /* request/reply */
 34                                                    34 
 35 struct atmtcp_control {                            35 struct atmtcp_control {
 36         struct atmtcp_hdr hdr;  /* must be fir     36         struct atmtcp_hdr hdr;  /* must be first */
 37         int type;               /* message typ     37         int type;               /* message type; both directions */
 38         atm_kptr_t vcc;         /* both direct     38         atm_kptr_t vcc;         /* both directions */
 39         struct sockaddr_atmpvc addr; /* sugges     39         struct sockaddr_atmpvc addr; /* suggested value from kernel */
 40         struct atm_qos  qos;    /* both direct     40         struct atm_qos  qos;    /* both directions */
 41         int result;             /* to kernel o     41         int result;             /* to kernel only */
 42 } __ATM_API_ALIGN;                                 42 } __ATM_API_ALIGN;
 43                                                    43 
 44 /*                                                 44 /*
 45  * Field usage:                                    45  * Field usage:
 46  * Messge type  dir.    hdr.v?i type    addr       46  * Messge type  dir.    hdr.v?i type    addr    qos     vcc     result
 47  * -----------  ----    ------- ----    ----       47  * -----------  ----    ------- ----    ----    ---     ---     ------
 48  * OPEN         K->D    Y       Y       Y          48  * OPEN         K->D    Y       Y       Y       Y       Y       0
 49  * OPEN         D->K    -       Y       Y          49  * OPEN         D->K    -       Y       Y       Y       Y       Y
 50  * CLOSE        K->D    -       -       Y          50  * CLOSE        K->D    -       -       Y       -       Y       0
 51  * CLOSE        D->K    -       -       -          51  * CLOSE        D->K    -       -       -       -       Y       Y
 52  */                                                52  */
 53                                                    53 
 54 #define SIOCSIFATMTCP   _IO('a',ATMIOC_ITF)        54 #define SIOCSIFATMTCP   _IO('a',ATMIOC_ITF)     /* set ATMTCP mode */
 55 #define ATMTCP_CREATE   _IO('a',ATMIOC_ITF+14)     55 #define ATMTCP_CREATE   _IO('a',ATMIOC_ITF+14)  /* create persistent ATMTCP
 56                                                    56                                                    interface */
 57 #define ATMTCP_REMOVE   _IO('a',ATMIOC_ITF+15)     57 #define ATMTCP_REMOVE   _IO('a',ATMIOC_ITF+15)  /* destroy persistent ATMTCP
 58                                                    58                                                    interface */
 59                                                    59 
 60                                                    60 
 61                                                    61 
 62 #endif /* _UAPILINUX_ATM_TCP_H */                  62 #endif /* _UAPILINUX_ATM_TCP_H */
 63                                                    63 

~ [ 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