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

TOMOYO Linux Cross Reference
Linux/include/net/netrom.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/net/netrom.h (Version linux-6.12-rc7) and /include/net/netrom.h (Version linux-2.6.32.71)


  1 /* SPDX-License-Identifier: GPL-2.0 */         << 
  2 /*                                                  1 /*
  3  *      Declarations of NET/ROM type objects.       2  *      Declarations of NET/ROM type objects.
  4  *                                                  3  *
  5  *      Jonathan Naylor G4KLX   9/4/95              4  *      Jonathan Naylor G4KLX   9/4/95
  6  */                                                 5  */
  7                                                     6 
  8 #ifndef _NETROM_H                                   7 #ifndef _NETROM_H
  9 #define _NETROM_H                                   8 #define _NETROM_H 
 10                                                     9 
 11 #include <linux/netrom.h>                          10 #include <linux/netrom.h>
 12 #include <linux/list.h>                            11 #include <linux/list.h>
 13 #include <linux/slab.h>                        << 
 14 #include <net/sock.h>                              12 #include <net/sock.h>
 15 #include <linux/refcount.h>                    << 
 16 #include <linux/seq_file.h>                    << 
 17 #include <net/ax25.h>                          << 
 18                                                    13 
 19 #define NR_NETWORK_LEN                  15         14 #define NR_NETWORK_LEN                  15
 20 #define NR_TRANSPORT_LEN                5          15 #define NR_TRANSPORT_LEN                5
 21                                                    16 
 22 #define NR_PROTO_IP                     0x0C       17 #define NR_PROTO_IP                     0x0C
 23                                                    18 
 24 #define NR_PROTOEXT                     0x00       19 #define NR_PROTOEXT                     0x00
 25 #define NR_CONNREQ                      0x01       20 #define NR_CONNREQ                      0x01
 26 #define NR_CONNACK                      0x02       21 #define NR_CONNACK                      0x02
 27 #define NR_DISCREQ                      0x03       22 #define NR_DISCREQ                      0x03
 28 #define NR_DISCACK                      0x04       23 #define NR_DISCACK                      0x04
 29 #define NR_INFO                         0x05       24 #define NR_INFO                         0x05
 30 #define NR_INFOACK                      0x06       25 #define NR_INFOACK                      0x06
 31 #define NR_RESET                        0x07       26 #define NR_RESET                        0x07
 32                                                    27 
 33 #define NR_CHOKE_FLAG                   0x80       28 #define NR_CHOKE_FLAG                   0x80
 34 #define NR_NAK_FLAG                     0x40       29 #define NR_NAK_FLAG                     0x40
 35 #define NR_MORE_FLAG                    0x20       30 #define NR_MORE_FLAG                    0x20
 36                                                    31 
 37 /* Define Link State constants. */                 32 /* Define Link State constants. */
 38 enum {                                             33 enum {
 39         NR_STATE_0,                                34         NR_STATE_0,
 40         NR_STATE_1,                                35         NR_STATE_1,
 41         NR_STATE_2,                                36         NR_STATE_2,
 42         NR_STATE_3                                 37         NR_STATE_3
 43 };                                                 38 };
 44                                                    39 
 45 #define NR_COND_ACK_PENDING             0x01       40 #define NR_COND_ACK_PENDING             0x01
 46 #define NR_COND_REJECT                  0x02       41 #define NR_COND_REJECT                  0x02
 47 #define NR_COND_PEER_RX_BUSY            0x04       42 #define NR_COND_PEER_RX_BUSY            0x04
 48 #define NR_COND_OWN_RX_BUSY             0x08       43 #define NR_COND_OWN_RX_BUSY             0x08
 49                                                    44 
 50 #define NR_DEFAULT_T1                   120000     45 #define NR_DEFAULT_T1                   120000          /* Outstanding frames - 120 seconds */
 51 #define NR_DEFAULT_T2                   5000       46 #define NR_DEFAULT_T2                   5000            /* Response delay     - 5 seconds */
 52 #define NR_DEFAULT_N2                   3          47 #define NR_DEFAULT_N2                   3               /* Number of Retries - 3 */
 53 #define NR_DEFAULT_T4                   180000     48 #define NR_DEFAULT_T4                   180000          /* Busy Delay - 180 seconds */
 54 #define NR_DEFAULT_IDLE                 0          49 #define NR_DEFAULT_IDLE                 0               /* No Activity Timeout - none */
 55 #define NR_DEFAULT_WINDOW               4          50 #define NR_DEFAULT_WINDOW               4               /* Default Window Size - 4 */
 56 #define NR_DEFAULT_OBS                  6          51 #define NR_DEFAULT_OBS                  6               /* Default Obsolescence Count - 6 */
 57 #define NR_DEFAULT_QUAL                 10         52 #define NR_DEFAULT_QUAL                 10              /* Default Neighbour Quality - 10 */
 58 #define NR_DEFAULT_TTL                  16         53 #define NR_DEFAULT_TTL                  16              /* Default Time To Live - 16 */
 59 #define NR_DEFAULT_ROUTING              1          54 #define NR_DEFAULT_ROUTING              1               /* Is routing enabled ? */
 60 #define NR_DEFAULT_FAILS                2          55 #define NR_DEFAULT_FAILS                2               /* Link fails until route fails */
 61 #define NR_DEFAULT_RESET                0          56 #define NR_DEFAULT_RESET                0               /* Sent / accept reset cmds? */
 62                                                    57 
 63 #define NR_MODULUS                      256        58 #define NR_MODULUS                      256
 64 #define NR_MAX_WINDOW_SIZE              127        59 #define NR_MAX_WINDOW_SIZE              127                     /* Maximum Window Allowable - 127 */
 65 #define NR_MAX_PACKET_SIZE              236        60 #define NR_MAX_PACKET_SIZE              236                     /* Maximum Packet Length - 236 */
 66                                                    61 
 67 struct nr_sock {                                   62 struct nr_sock {
 68         struct sock             sock;              63         struct sock             sock;
 69         ax25_address            user_addr, sou     64         ax25_address            user_addr, source_addr, dest_addr;
 70         struct net_device               *devic     65         struct net_device               *device;
 71         unsigned char           my_index,   my     66         unsigned char           my_index,   my_id;
 72         unsigned char           your_index, yo     67         unsigned char           your_index, your_id;
 73         unsigned char           state, conditi     68         unsigned char           state, condition, bpqext, window;
 74         unsigned short          vs, vr, va, vl     69         unsigned short          vs, vr, va, vl;
 75         unsigned char           n2, n2count;       70         unsigned char           n2, n2count;
 76         unsigned long           t1, t2, t4, id     71         unsigned long           t1, t2, t4, idle;
 77         unsigned short          fraglen;           72         unsigned short          fraglen;
 78         struct timer_list       t1timer;           73         struct timer_list       t1timer;
 79         struct timer_list       t2timer;           74         struct timer_list       t2timer;
 80         struct timer_list       t4timer;           75         struct timer_list       t4timer;
 81         struct timer_list       idletimer;         76         struct timer_list       idletimer;
 82         struct sk_buff_head     ack_queue;         77         struct sk_buff_head     ack_queue;
 83         struct sk_buff_head     reseq_queue;       78         struct sk_buff_head     reseq_queue;
 84         struct sk_buff_head     frag_queue;        79         struct sk_buff_head     frag_queue;
 85 };                                                 80 };
 86                                                    81 
 87 #define nr_sk(sk) ((struct nr_sock *)(sk))         82 #define nr_sk(sk) ((struct nr_sock *)(sk))
 88                                                    83 
 89 struct nr_neigh {                                  84 struct nr_neigh {
 90         struct hlist_node       neigh_node;        85         struct hlist_node       neigh_node;
 91         ax25_address            callsign;          86         ax25_address            callsign;
 92         ax25_digi               *digipeat;         87         ax25_digi               *digipeat;
 93         ax25_cb                 *ax25;             88         ax25_cb                 *ax25;
 94         struct net_device       *dev;              89         struct net_device       *dev;
 95         unsigned char           quality;           90         unsigned char           quality;
 96         unsigned char           locked;            91         unsigned char           locked;
 97         unsigned short          count;             92         unsigned short          count;
 98         unsigned int            number;            93         unsigned int            number;
 99         unsigned char           failed;            94         unsigned char           failed;
100         refcount_t              refcount;      !!  95         atomic_t                refcount;
101 };                                                 96 };
102                                                    97 
103 struct nr_route {                                  98 struct nr_route {
104         unsigned char   quality;                   99         unsigned char   quality;
105         unsigned char   obs_count;                100         unsigned char   obs_count;
106         struct nr_neigh *neighbour;               101         struct nr_neigh *neighbour;
107 };                                                102 };
108                                                   103 
109 struct nr_node {                                  104 struct nr_node {
110         struct hlist_node       node_node;        105         struct hlist_node       node_node;
111         ax25_address            callsign;         106         ax25_address            callsign;
112         char                    mnemonic[7];      107         char                    mnemonic[7];
113         unsigned char           which;            108         unsigned char           which;
114         unsigned char           count;            109         unsigned char           count;
115         struct nr_route         routes[3];        110         struct nr_route         routes[3];
116         refcount_t              refcount;      !! 111         atomic_t                refcount;
117         spinlock_t              node_lock;        112         spinlock_t              node_lock;
118 };                                                113 };
119                                                   114 
120 /*********************************************    115 /*********************************************************************
121  *      nr_node & nr_neigh lists, refcounting     116  *      nr_node & nr_neigh lists, refcounting and locking
122  *********************************************    117  *********************************************************************/
123                                                   118 
124 #define nr_node_hold(__nr_node) \                 119 #define nr_node_hold(__nr_node) \
125         refcount_inc(&((__nr_node)->refcount)) !! 120         atomic_inc(&((__nr_node)->refcount))
126                                                   121 
127 static __inline__ void nr_node_put(struct nr_n    122 static __inline__ void nr_node_put(struct nr_node *nr_node)
128 {                                                 123 {
129         if (refcount_dec_and_test(&nr_node->re !! 124         if (atomic_dec_and_test(&nr_node->refcount)) {
130                 kfree(nr_node);                   125                 kfree(nr_node);
131         }                                         126         }
132 }                                                 127 }
133                                                   128 
134 #define nr_neigh_hold(__nr_neigh) \               129 #define nr_neigh_hold(__nr_neigh) \
135         refcount_inc(&((__nr_neigh)->refcount) !! 130         atomic_inc(&((__nr_neigh)->refcount))
136                                                   131 
137 static __inline__ void nr_neigh_put(struct nr_    132 static __inline__ void nr_neigh_put(struct nr_neigh *nr_neigh)
138 {                                                 133 {
139         if (refcount_dec_and_test(&nr_neigh->r !! 134         if (atomic_dec_and_test(&nr_neigh->refcount)) {
140                 if (nr_neigh->ax25)               135                 if (nr_neigh->ax25)
141                         ax25_cb_put(nr_neigh->    136                         ax25_cb_put(nr_neigh->ax25);
142                 kfree(nr_neigh->digipeat);        137                 kfree(nr_neigh->digipeat);
143                 kfree(nr_neigh);                  138                 kfree(nr_neigh);
144         }                                         139         }
145 }                                                 140 }
146                                                   141 
147 /* nr_node_lock and nr_node_unlock also hold/p    142 /* nr_node_lock and nr_node_unlock also hold/put the node's refcounter.
148  */                                               143  */
149 static __inline__ void nr_node_lock(struct nr_    144 static __inline__ void nr_node_lock(struct nr_node *nr_node)
150 {                                                 145 {
151         nr_node_hold(nr_node);                    146         nr_node_hold(nr_node);
152         spin_lock_bh(&nr_node->node_lock);        147         spin_lock_bh(&nr_node->node_lock);
153 }                                                 148 }
154                                                   149 
155 static __inline__ void nr_node_unlock(struct n    150 static __inline__ void nr_node_unlock(struct nr_node *nr_node)
156 {                                                 151 {
157         spin_unlock_bh(&nr_node->node_lock);      152         spin_unlock_bh(&nr_node->node_lock);
158         nr_node_put(nr_node);                     153         nr_node_put(nr_node);
159 }                                                 154 }
160                                                   155 
161 #define nr_neigh_for_each(__nr_neigh, list) \  !! 156 #define nr_neigh_for_each(__nr_neigh, node, list) \
162         hlist_for_each_entry(__nr_neigh, list, !! 157         hlist_for_each_entry(__nr_neigh, node, list, neigh_node)
163                                                   158 
164 #define nr_neigh_for_each_safe(__nr_neigh, nod !! 159 #define nr_neigh_for_each_safe(__nr_neigh, node, node2, list) \
165         hlist_for_each_entry_safe(__nr_neigh,  !! 160         hlist_for_each_entry_safe(__nr_neigh, node, node2, list, neigh_node)
166                                                   161 
167 #define nr_node_for_each(__nr_node, list) \    !! 162 #define nr_node_for_each(__nr_node, node, list) \
168         hlist_for_each_entry(__nr_node, list,  !! 163         hlist_for_each_entry(__nr_node, node, list, node_node)
169                                                   164 
170 #define nr_node_for_each_safe(__nr_node, node2 !! 165 #define nr_node_for_each_safe(__nr_node, node, node2, list) \
171         hlist_for_each_entry_safe(__nr_node, n !! 166         hlist_for_each_entry_safe(__nr_node, node, node2, list, node_node)
172                                                   167 
173                                                   168 
174 /*********************************************    169 /*********************************************************************/
175                                                   170 
176 /* af_netrom.c */                                 171 /* af_netrom.c */
177 extern int  sysctl_netrom_default_path_quality    172 extern int  sysctl_netrom_default_path_quality;
178 extern int  sysctl_netrom_obsolescence_count_i    173 extern int  sysctl_netrom_obsolescence_count_initialiser;
179 extern int  sysctl_netrom_network_ttl_initiali    174 extern int  sysctl_netrom_network_ttl_initialiser;
180 extern int  sysctl_netrom_transport_timeout;      175 extern int  sysctl_netrom_transport_timeout;
181 extern int  sysctl_netrom_transport_maximum_tr    176 extern int  sysctl_netrom_transport_maximum_tries;
182 extern int  sysctl_netrom_transport_acknowledg    177 extern int  sysctl_netrom_transport_acknowledge_delay;
183 extern int  sysctl_netrom_transport_busy_delay    178 extern int  sysctl_netrom_transport_busy_delay;
184 extern int  sysctl_netrom_transport_requested_    179 extern int  sysctl_netrom_transport_requested_window_size;
185 extern int  sysctl_netrom_transport_no_activit    180 extern int  sysctl_netrom_transport_no_activity_timeout;
186 extern int  sysctl_netrom_routing_control;        181 extern int  sysctl_netrom_routing_control;
187 extern int  sysctl_netrom_link_fails_count;       182 extern int  sysctl_netrom_link_fails_count;
188 extern int  sysctl_netrom_reset_circuit;          183 extern int  sysctl_netrom_reset_circuit;
189                                                   184 
190 int nr_rx_frame(struct sk_buff *, struct net_d !! 185 extern int  nr_rx_frame(struct sk_buff *, struct net_device *);
191 void nr_destroy_socket(struct sock *);         !! 186 extern void nr_destroy_socket(struct sock *);
192                                                   187 
193 /* nr_dev.c */                                    188 /* nr_dev.c */
194 int nr_rx_ip(struct sk_buff *, struct net_devi !! 189 extern int  nr_rx_ip(struct sk_buff *, struct net_device *);
195 void nr_setup(struct net_device *);            !! 190 extern void nr_setup(struct net_device *);
196                                                   191 
197 /* nr_in.c */                                     192 /* nr_in.c */
198 int nr_process_rx_frame(struct sock *, struct  !! 193 extern int  nr_process_rx_frame(struct sock *, struct sk_buff *);
199                                                   194 
200 /* nr_loopback.c */                               195 /* nr_loopback.c */
201 void nr_loopback_init(void);                   !! 196 extern void nr_loopback_init(void);
202 void nr_loopback_clear(void);                  !! 197 extern void nr_loopback_clear(void);
203 int nr_loopback_queue(struct sk_buff *);       !! 198 extern int  nr_loopback_queue(struct sk_buff *);
204                                                   199 
205 /* nr_out.c */                                    200 /* nr_out.c */
206 void nr_output(struct sock *, struct sk_buff * !! 201 extern void nr_output(struct sock *, struct sk_buff *);
207 void nr_send_nak_frame(struct sock *);         !! 202 extern void nr_send_nak_frame(struct sock *);
208 void nr_kick(struct sock *);                   !! 203 extern void nr_kick(struct sock *);
209 void nr_transmit_buffer(struct sock *, struct  !! 204 extern void nr_transmit_buffer(struct sock *, struct sk_buff *);
210 void nr_establish_data_link(struct sock *);    !! 205 extern void nr_establish_data_link(struct sock *);
211 void nr_enquiry_response(struct sock *);       !! 206 extern void nr_enquiry_response(struct sock *);
212 void nr_check_iframes_acked(struct sock *, uns !! 207 extern void nr_check_iframes_acked(struct sock *, unsigned short);
213                                                   208 
214 /* nr_route.c */                                  209 /* nr_route.c */
215 void nr_rt_device_down(struct net_device *);   !! 210 extern void nr_rt_device_down(struct net_device *);
216 struct net_device *nr_dev_first(void);         !! 211 extern struct net_device *nr_dev_first(void);
217 struct net_device *nr_dev_get(ax25_address *); !! 212 extern struct net_device *nr_dev_get(ax25_address *);
218 int nr_rt_ioctl(unsigned int, void __user *);  !! 213 extern int  nr_rt_ioctl(unsigned int, void __user *);
219 void nr_link_failed(ax25_cb *, int);           !! 214 extern void nr_link_failed(ax25_cb *, int);
220 int nr_route_frame(struct sk_buff *, ax25_cb * !! 215 extern int  nr_route_frame(struct sk_buff *, ax25_cb *);
221 extern const struct seq_operations nr_node_seq !! 216 extern const struct file_operations nr_nodes_fops;
222 extern const struct seq_operations nr_neigh_se !! 217 extern const struct file_operations nr_neigh_fops;
223 void nr_rt_free(void);                         !! 218 extern void nr_rt_free(void);
224                                                   219 
225 /* nr_subr.c */                                   220 /* nr_subr.c */
226 void nr_clear_queues(struct sock *);           !! 221 extern void nr_clear_queues(struct sock *);
227 void nr_frames_acked(struct sock *, unsigned s !! 222 extern void nr_frames_acked(struct sock *, unsigned short);
228 void nr_requeue_frames(struct sock *);         !! 223 extern void nr_requeue_frames(struct sock *);
229 int nr_validate_nr(struct sock *, unsigned sho !! 224 extern int  nr_validate_nr(struct sock *, unsigned short);
230 int nr_in_rx_window(struct sock *, unsigned sh !! 225 extern int  nr_in_rx_window(struct sock *, unsigned short);
231 void nr_write_internal(struct sock *, int);    !! 226 extern void nr_write_internal(struct sock *, int);
232                                                   227 
233 void __nr_transmit_reply(struct sk_buff *skb,  !! 228 extern void __nr_transmit_reply(struct sk_buff *skb, int mine,
                                                   >> 229         unsigned char cmdflags);
234                                                   230 
235 /*                                                231 /*
236  * This routine is called when a Connect Ackno    232  * This routine is called when a Connect Acknowledge with the Choke Flag
237  * set is needed to refuse a connection.          233  * set is needed to refuse a connection.
238  */                                               234  */
239 #define nr_transmit_refusal(skb, mine)            235 #define nr_transmit_refusal(skb, mine)                                  \
240 do {                                              236 do {                                                                    \
241         __nr_transmit_reply((skb), (mine), NR_    237         __nr_transmit_reply((skb), (mine), NR_CONNACK | NR_CHOKE_FLAG); \
242 } while (0)                                       238 } while (0)
243                                                   239 
244 /*                                                240 /*
245  * This routine is called when we don't have a    241  * This routine is called when we don't have a circuit matching an incoming
246  * NET/ROM packet.  This is an G8PZT Xrouter e    242  * NET/ROM packet.  This is an G8PZT Xrouter extension.
247  */                                               243  */
248 #define nr_transmit_reset(skb, mine)              244 #define nr_transmit_reset(skb, mine)                                    \
249 do {                                              245 do {                                                                    \
250         __nr_transmit_reply((skb), (mine), NR_    246         __nr_transmit_reply((skb), (mine), NR_RESET);                   \
251 } while (0)                                       247 } while (0)
252                                                   248 
253 void nr_disconnect(struct sock *, int);        !! 249 extern void nr_disconnect(struct sock *, int);
254                                                   250 
255 /* nr_timer.c */                                  251 /* nr_timer.c */
256 void nr_init_timers(struct sock *sk);          !! 252 extern void nr_init_timers(struct sock *sk);
257 void nr_start_heartbeat(struct sock *);        !! 253 extern void nr_start_heartbeat(struct sock *);
258 void nr_start_t1timer(struct sock *);          !! 254 extern void nr_start_t1timer(struct sock *);
259 void nr_start_t2timer(struct sock *);          !! 255 extern void nr_start_t2timer(struct sock *);
260 void nr_start_t4timer(struct sock *);          !! 256 extern void nr_start_t4timer(struct sock *);
261 void nr_start_idletimer(struct sock *);        !! 257 extern void nr_start_idletimer(struct sock *);
262 void nr_stop_heartbeat(struct sock *);         !! 258 extern void nr_stop_heartbeat(struct sock *);
263 void nr_stop_t1timer(struct sock *);           !! 259 extern void nr_stop_t1timer(struct sock *);
264 void nr_stop_t2timer(struct sock *);           !! 260 extern void nr_stop_t2timer(struct sock *);
265 void nr_stop_t4timer(struct sock *);           !! 261 extern void nr_stop_t4timer(struct sock *);
266 void nr_stop_idletimer(struct sock *);         !! 262 extern void nr_stop_idletimer(struct sock *);
267 int nr_t1timer_running(struct sock *);         !! 263 extern int  nr_t1timer_running(struct sock *);
268                                                   264 
269 /* sysctl_net_netrom.c */                         265 /* sysctl_net_netrom.c */
270 int nr_register_sysctl(void);                  !! 266 extern void nr_register_sysctl(void);
271 void nr_unregister_sysctl(void);               !! 267 extern void nr_unregister_sysctl(void);
272                                                   268 
273 #endif                                            269 #endif
274                                                   270 

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