|
@@ -171,7 +171,7 @@ static inline unsigned long make_jiffies(long secs)
|
|
|
|
|
|
static void xfrm_policy_timer(unsigned long data)
|
|
|
{
|
|
|
- struct xfrm_policy *xp = (struct xfrm_policy*)data;
|
|
|
+ struct xfrm_policy *xp = (struct xfrm_policy *)data;
|
|
|
unsigned long now = get_seconds();
|
|
|
long next = LONG_MAX;
|
|
|
int warn = 0;
|
|
@@ -1758,7 +1758,7 @@ xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
|
|
|
}
|
|
|
|
|
|
xdst->num_pols = num_pols;
|
|
|
- memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
|
|
|
+ memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
|
|
|
xdst->policy_genid = atomic_read(&pols[0]->genid);
|
|
|
|
|
|
return xdst;
|
|
@@ -2027,7 +2027,7 @@ make_dummy_bundle:
|
|
|
}
|
|
|
xdst->num_pols = num_pols;
|
|
|
xdst->num_xfrms = num_xfrms;
|
|
|
- memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
|
|
|
+ memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
|
|
|
|
|
|
dst_hold(&xdst->u.dst);
|
|
|
return &xdst->flo;
|
|
@@ -2136,7 +2136,7 @@ struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
|
|
|
|
|
|
num_pols = xdst->num_pols;
|
|
|
num_xfrms = xdst->num_xfrms;
|
|
|
- memcpy(pols, xdst->pols, sizeof(struct xfrm_policy*) * num_pols);
|
|
|
+ memcpy(pols, xdst->pols, sizeof(struct xfrm_policy *) * num_pols);
|
|
|
route = xdst->route;
|
|
|
}
|
|
|
|
|
@@ -3064,8 +3064,8 @@ static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
-static struct xfrm_policy * xfrm_migrate_policy_find(const struct xfrm_selector *sel,
|
|
|
- u8 dir, u8 type, struct net *net)
|
|
|
+static struct xfrm_policy *xfrm_migrate_policy_find(const struct xfrm_selector *sel,
|
|
|
+ u8 dir, u8 type, struct net *net)
|
|
|
{
|
|
|
struct xfrm_policy *pol, *ret = NULL;
|
|
|
struct hlist_head *chain;
|