net: cleanup include/net
This cleanup patch puts struct/union/enum opening braces, in first line to ease grep games. struct something { becomes : struct something { Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
4b7673a04a
commit
fd2c3ef761
@ -121,8 +121,7 @@ struct xfrm_state_walk {
|
||||
};
|
||||
|
||||
/* Full description of state of transformer. */
|
||||
struct xfrm_state
|
||||
{
|
||||
struct xfrm_state {
|
||||
#ifdef CONFIG_NET_NS
|
||||
struct net *xs_net;
|
||||
#endif
|
||||
@ -237,8 +236,7 @@ enum {
|
||||
};
|
||||
|
||||
/* callback structure passed from either netlink or pfkey */
|
||||
struct km_event
|
||||
{
|
||||
struct km_event {
|
||||
union {
|
||||
u32 hard;
|
||||
u32 proto;
|
||||
@ -313,8 +311,7 @@ extern int xfrm_state_unregister_afinfo(struct xfrm_state_afinfo *afinfo);
|
||||
|
||||
extern void xfrm_state_delete_tunnel(struct xfrm_state *x);
|
||||
|
||||
struct xfrm_type
|
||||
{
|
||||
struct xfrm_type {
|
||||
char *description;
|
||||
struct module *owner;
|
||||
__u8 proto;
|
||||
@ -420,8 +417,7 @@ static inline struct xfrm_mode *xfrm_ip2inner_mode(struct xfrm_state *x, int ipp
|
||||
return x->inner_mode_iaf;
|
||||
}
|
||||
|
||||
struct xfrm_tmpl
|
||||
{
|
||||
struct xfrm_tmpl {
|
||||
/* id in template is interpreted as:
|
||||
* daddr - destination of tunnel, may be zero for transport mode.
|
||||
* spi - zero to acquire spi. Not zero if spi is static, then
|
||||
@ -468,8 +464,7 @@ struct xfrm_policy_walk {
|
||||
u32 seq;
|
||||
};
|
||||
|
||||
struct xfrm_policy
|
||||
{
|
||||
struct xfrm_policy {
|
||||
#ifdef CONFIG_NET_NS
|
||||
struct net *xp_net;
|
||||
#endif
|
||||
@ -538,8 +533,7 @@ struct xfrm_migrate {
|
||||
/* default seq threshold size */
|
||||
#define XFRM_AE_SEQT_SIZE 2
|
||||
|
||||
struct xfrm_mgr
|
||||
{
|
||||
struct xfrm_mgr {
|
||||
struct list_head list;
|
||||
char *id;
|
||||
int (*notify)(struct xfrm_state *x, struct km_event *c);
|
||||
@ -626,8 +620,7 @@ struct xfrm_spi_skb_cb {
|
||||
#define XFRM_SPI_SKB_CB(__skb) ((struct xfrm_spi_skb_cb *)&((__skb)->cb[0]))
|
||||
|
||||
/* Audit Information */
|
||||
struct xfrm_audit
|
||||
{
|
||||
struct xfrm_audit {
|
||||
u32 secid;
|
||||
uid_t loginuid;
|
||||
u32 sessionid;
|
||||
@ -871,8 +864,7 @@ static inline int xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ct
|
||||
* bundles differing by session id. All the bundles grow from a parent
|
||||
* policy rule.
|
||||
*/
|
||||
struct xfrm_dst
|
||||
{
|
||||
struct xfrm_dst {
|
||||
union {
|
||||
struct dst_entry dst;
|
||||
struct rtable rt;
|
||||
@ -907,8 +899,7 @@ static inline void xfrm_dst_destroy(struct xfrm_dst *xdst)
|
||||
|
||||
extern void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev);
|
||||
|
||||
struct sec_path
|
||||
{
|
||||
struct sec_path {
|
||||
atomic_t refcnt;
|
||||
int len;
|
||||
struct xfrm_state *xvec[XFRM_MAX_DEPTH];
|
||||
|
Reference in New Issue
Block a user