-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 327412 b: refs/heads/master c: 4db67e8 h: refs/heads/master v: v3
- Loading branch information
Eric W. Biederman
authored and
David S. Miller
committed
Aug 15, 2012
1 parent
6752404
commit 2393f09
Showing
10 changed files
with
133 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 4110cc255ddec59c79fba4d71cdd948d0a382140 | ||
refs/heads/master: 4db67e808640e3934d82ce61ee8e2e89fd877ba8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#ifndef __NETNS_SCTP_H__ | ||
#define __NETNS_SCTP_H__ | ||
|
||
struct netns_sctp { | ||
/* This is the global local address list. | ||
* We actively maintain this complete list of addresses on | ||
* the system by catching address add/delete events. | ||
* | ||
* It is a list of sctp_sockaddr_entry. | ||
*/ | ||
struct list_head local_addr_list; | ||
struct list_head addr_waitq; | ||
struct timer_list addr_wq_timer; | ||
struct list_head auto_asconf_splist; | ||
spinlock_t addr_wq_lock; | ||
|
||
/* Lock that protects the local_addr_list writers */ | ||
spinlock_t local_addr_lock; | ||
}; | ||
|
||
#endif /* __NETNS_SCTP_H__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.