aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ibm_emac
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ibm_emac')
0 files changed, 0 insertions, 0 deletions
div class='alt'>
3182cd84f0e1
1da177e4c3f4






4db67e808640
1da177e4c3f4
dd0fc66fb33c
3182cd84f0e1
1da177e4c3f4

1da177e4c3f4





9dbc15f055f0
4db67e808640
1da177e4c3f4









9dbc15f055f0
4db67e808640
1da177e4c3f4













8e71a11c9f3c









8e71a11c9f3c




9dbc15f055f0
8e71a11c9f3c







1da177e4c3f4




1da177e4c3f4






c182f90bc1f2
1da177e4c3f4

c182f90bc1f2

5d4145216632
1da177e4c3f4








1da177e4c3f4



f57d96b2e92d
1da177e4c3f4



939cfa75a0ce
1da177e4c3f4


5ab7b859ab58
1da177e4c3f4



5ab7b859ab58

1da177e4c3f4
f57d96b2e92d
293035479942
dc022a9874d0
1da177e4c3f4
559cf710b07c




1da177e4c3f4







0ed90fb0f668
1da177e4c3f4
559cf710b07c
22626216c46f
1da177e4c3f4
559cf710b07c



c9a08505ec0a
1da177e4c3f4
22626216c46f
559cf710b07c


1da177e4c3f4


22626216c46f
1231f0baa547
559cf710b07c
0ed90fb0f668
559cf710b07c

1da177e4c3f4








3182cd84f0e1
dd0fc66fb33c
1da177e4c3f4































9dbc15f055f0
6244be4e0630

1da177e4c3f4














dd0fc66fb33c
1da177e4c3f4



















dd86d136f9fe
f57d96b2e92d
1da177e4c3f4


















d808ad9ab8b1
1da177e4c3f4



559cf710b07c









1da177e4c3f4
559cf710b07c
1da177e4c3f4
559cf710b07c
1da177e4c3f4

7dab83de50c7




































75205f478331

























1da177e4c3f4











1da177e4c3f4

559cf710b07c




1da177e4c3f4

ea110733874d
1da177e4c3f4
d808ad9ab8b1
559cf710b07c
1da177e4c3f4
5f242a13e850
1da177e4c3f4




5ae955cffdb9
1da177e4c3f4





4db67e808640
1da177e4c3f4
dd0fc66fb33c
3182cd84f0e1
1da177e4c3f4


52cae8f06bab
4db67e808640
e7ff4a7037e6
1da177e4c3f4








f57d96b2e92d

1da177e4c3f4





52cae8f06bab
1da177e4c3f4
52cae8f06bab









1da177e4c3f4

52cae8f06bab
1da177e4c3f4



e7ff4a7037e6
1da177e4c3f4












723884339f90


1da177e4c3f4
e1fc3b14f9a9
723884339f90
1da177e4c3f4
723884339f90














1da177e4c3f4



9f7d653b67ae














1da177e4c3f4














1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
                             




                                           
                                                       


                                                                   
                                             




                                                                      
                                                              











                                                                     
                                                    
  




                                                       


                        
                       







                                                

                                                                               
                                         






                                                                    
                                                                     
                                                         
                                                      
                                  

                                         





                                                                       
                                                             
                                                                      









                                                                              
                                                                     
                                                                       













                                                                        









                                                                         




                                                 
                                                             







                                                                   




                                                                    






                                                           
                                                

                                          

                                                                       
                                     








                                                   



                                                                              
                                                  



                                                        
                                           


                               
                                            



                                                           

                                                      
 
                                 
                        
 
                                    




                                                                   







                                                                     
                                                                            
 
                                                
                      
 



                                                                       
                                                              
                                                    
                                  


                                                  


                 
                    
                                     
                                          
                         

         








                                                                         
                                                        
                                                   































                                                          
                                                            

                                                                 














                                                                           
                                                                



















                                                                      
                                                                    
                                                                           


















                                                                       
                                                   



                                                     









                                                                 
         
                          
 
                     

 




































                                                                 

























                                                                 











                                                                         

                                          




                                                                    

                                                    
                                        
                                                                       
                                
                                      
 
                                                                    




                                                     
                                         





                                                            
                                                                           
                                                    
                                                            
                                        


                      
                                      
                                                                                
                                                     








                                                                    

                                                                             





                                  
                                                             
 









                                                 

                         
 



                                   
                                                                                   












                                                                    


                                                                   
           
                                         
                                       
                         














                                                                            



                 














                                                                    














                                                                      
/* SCTP kernel implementation
 * (C) Copyright IBM Corp. 2001, 2003
 * Copyright (c) Cisco 1999,2000
 * Copyright (c) Motorola 1999,2000,2001
 * Copyright (c) La Monte H.P. Yarroll 2001
 *
 * This file is part of the SCTP kernel implementation.
 *
 * A collection class to handle the storage of transport addresses.
 *
 * This SCTP implementation is free software;
 * you can redistribute it and/or modify it under the terms of
 * the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This SCTP implementation is distributed in the hope that it
 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
 *                 ************************
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GNU CC; see the file COPYING.  If not, write to
 * the Free Software Foundation, 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Please send any bug reports or fixes you make to the
 * email address(es):
 *    lksctp developers <linux-sctp@vger.kernel.org>
 *
 * Written or modified by:
 *    La Monte H.P. Yarroll <piggy@acm.org>
 *    Karl Knutson          <karl@athena.chicago.il.us>
 *    Jon Grimm             <jgrimm@us.ibm.com>
 *    Daisy Chang           <daisyc@us.ibm.com>
 */

#include <linux/types.h>
#include <linux/slab.h>
#include <linux/in.h>
#include <net/sock.h>
#include <net/ipv6.h>
#include <net/if_inet6.h>
#include <net/sctp/sctp.h>
#include <net/sctp/sm.h>

/* Forward declarations for internal helpers. */
static int sctp_copy_one_addr(struct net *, struct sctp_bind_addr *,
			      union sctp_addr *, sctp_scope_t scope, gfp_t gfp,
			      int flags);
static void sctp_bind_addr_clean(struct sctp_bind_addr *);

/* First Level Abstractions. */

/* Copy 'src' to 'dest' taking 'scope' into account.  Omit addresses
 * in 'src' which have a broader scope than 'scope'.
 */
int sctp_bind_addr_copy(struct net *net, struct sctp_bind_addr *dest,
			const struct sctp_bind_addr *src,
			sctp_scope_t scope, gfp_t gfp,
			int flags)
{
	struct sctp_sockaddr_entry *addr;
	int error = 0;

	/* All addresses share the same port.  */
	dest->port = src->port;

	/* Extract the addresses which are relevant for this scope.  */
	list_for_each_entry(addr, &src->address_list, list) {
		error = sctp_copy_one_addr(net, dest, &addr->a, scope,
					   gfp, flags);
		if (error < 0)
			goto out;
	}

	/* If there are no addresses matching the scope and
	 * this is global scope, try to get a link scope address, with
	 * the assumption that we must be sitting behind a NAT.
	 */
	if (list_empty(&dest->address_list) && (SCTP_SCOPE_GLOBAL == scope)) {
		list_for_each_entry(addr, &src->address_list, list) {
			error = sctp_copy_one_addr(net, dest, &addr->a,
						   SCTP_SCOPE_LINK, gfp,
						   flags);
			if (error < 0)
				goto out;
		}
	}

out:
	if (error)
		sctp_bind_addr_clean(dest);

	return error;
}

/* Exactly duplicate the address lists.  This is necessary when doing
 * peer-offs and accepts.  We don't want to put all the current system
 * addresses into the endpoint.  That's useless.  But we do want duplicat
 * the list of bound addresses that the older endpoint used.
 */
int sctp_bind_addr_dup(struct sctp_bind_addr *dest,
			const struct sctp_bind_addr *src,
			gfp_t gfp)
{
	struct sctp_sockaddr_entry *addr;
	int error = 0;

	/* All addresses share the same port.  */
	dest->port = src->port;

	list_for_each_entry(addr, &src->address_list, list) {
		error = sctp_add_bind_addr(dest, &addr->a, 1, gfp);
		if (error < 0)
			break;
	}

	return error;
}

/* Initialize the SCTP_bind_addr structure for either an endpoint or
 * an association.
 */
void sctp_bind_addr_init(struct sctp_bind_addr *bp, __u16 port)
{
	INIT_LIST_HEAD(&bp->address_list);
	bp->port = port;
}

/* Dispose of the address list. */
static void sctp_bind_addr_clean(struct sctp_bind_addr *bp)
{
	struct sctp_sockaddr_entry *addr, *temp;

	/* Empty the bind address list. */
	list_for_each_entry_safe(addr, temp, &bp->address_list, list) {
		list_del_rcu(&addr->list);
		kfree_rcu(addr, rcu);
		SCTP_DBG_OBJCNT_DEC(addr);
	}
}

/* Dispose of an SCTP_bind_addr structure  */
void sctp_bind_addr_free(struct sctp_bind_addr *bp)
{
	/* Empty the bind address list. */
	sctp_bind_addr_clean(bp);
}

/* Add an address to the bind address list in the SCTP_bind_addr structure. */
int sctp_add_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *new,
		       __u8 addr_state, gfp_t gfp)
{
	struct sctp_sockaddr_entry *addr;