diff options
author | Nikolay Aleksandrov <nikolay@redhat.com> | 2014-08-01 06:29:46 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-08-02 18:31:31 -0400 |
commit | f926e23660d52601089222cb4755aabc693ca390 (patch) | |
tree | d91002edbf2daf1facd3ea158e49bec7a96f1383 /net/ipv4 | |
parent | 1ab1934ed80aa90b268a62a561f8fdc60812793c (diff) |
inet: frags: fix function declaration alignments in inet_fragment
Fix a couple of functions' declaration alignments.
Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/inet_fragment.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/net/ipv4/inet_fragment.c b/net/ipv4/inet_fragment.c index e3ebc6608e5d..fa49916c23a0 100644 --- a/net/ipv4/inet_fragment.c +++ b/net/ipv4/inet_fragment.c | |||
@@ -334,8 +334,9 @@ void inet_frag_destroy(struct inet_frag_queue *q, struct inet_frags *f) | |||
334 | EXPORT_SYMBOL(inet_frag_destroy); | 334 | EXPORT_SYMBOL(inet_frag_destroy); |
335 | 335 | ||
336 | static struct inet_frag_queue *inet_frag_intern(struct netns_frags *nf, | 336 | static struct inet_frag_queue *inet_frag_intern(struct netns_frags *nf, |
337 | struct inet_frag_queue *qp_in, struct inet_frags *f, | 337 | struct inet_frag_queue *qp_in, |
338 | void *arg) | 338 | struct inet_frags *f, |
339 | void *arg) | ||
339 | { | 340 | { |
340 | struct inet_frag_bucket *hb = get_frag_bucket_locked(qp_in, f); | 341 | struct inet_frag_bucket *hb = get_frag_bucket_locked(qp_in, f); |
341 | struct inet_frag_queue *qp; | 342 | struct inet_frag_queue *qp; |
@@ -368,7 +369,8 @@ static struct inet_frag_queue *inet_frag_intern(struct netns_frags *nf, | |||
368 | } | 369 | } |
369 | 370 | ||
370 | static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf, | 371 | static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf, |
371 | struct inet_frags *f, void *arg) | 372 | struct inet_frags *f, |
373 | void *arg) | ||
372 | { | 374 | { |
373 | struct inet_frag_queue *q; | 375 | struct inet_frag_queue *q; |
374 | 376 | ||
@@ -393,7 +395,8 @@ static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf, | |||
393 | } | 395 | } |
394 | 396 | ||
395 | static struct inet_frag_queue *inet_frag_create(struct netns_frags *nf, | 397 | static struct inet_frag_queue *inet_frag_create(struct netns_frags *nf, |
396 | struct inet_frags *f, void *arg) | 398 | struct inet_frags *f, |
399 | void *arg) | ||
397 | { | 400 | { |
398 | struct inet_frag_queue *q; | 401 | struct inet_frag_queue *q; |
399 | 402 | ||
@@ -405,7 +408,8 @@ static struct inet_frag_queue *inet_frag_create(struct netns_frags *nf, | |||
405 | } | 408 | } |
406 | 409 | ||
407 | struct inet_frag_queue *inet_frag_find(struct netns_frags *nf, | 410 | struct inet_frag_queue *inet_frag_find(struct netns_frags *nf, |
408 | struct inet_frags *f, void *key, unsigned int hash) | 411 | struct inet_frags *f, void *key, |
412 | unsigned int hash) | ||
409 | { | 413 | { |
410 | struct inet_frag_bucket *hb; | 414 | struct inet_frag_bucket *hb; |
411 | struct inet_frag_queue *q; | 415 | struct inet_frag_queue *q; |