diff mbox

[net-next] ipv4: make fib_detect_death static

Message ID 20131227121053.5f3445ac@nehalam.linuxnetplumber.net
State Changes Requested, archived
Delegated to: David Miller
Headers show

Commit Message

Stephen Hemminger Dec. 27, 2013, 8:10 p.m. UTC
Make fib_detect_death function static only used in one file.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>


---
 net/ipv4/fib_lookup.h    |    2 --
 net/ipv4/fib_semantics.c |    2 +-
 2 files changed, 1 insertion(+), 3 deletions(-)

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

David Miller Dec. 28, 2013, 6:21 a.m. UTC | #1
From: Stephen Hemminger <stephen@networkplumber.org>
Date: Fri, 27 Dec 2013 12:10:53 -0800

> -int fib_detect_death(struct fib_info *fi, int order,
> +static int fib_detect_death(struct fib_info *fi, int order,
>  		     struct fib_info **last_resort, int *last_idx, int dflt)

Please reindent the args.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

--- a/net/ipv4/fib_lookup.h	2013-12-24 15:15:26.849740111 -0800
+++ b/net/ipv4/fib_lookup.h	2013-12-24 15:15:59.393302735 -0800
@@ -33,8 +33,6 @@  int fib_dump_info(struct sk_buff *skb, u
 void rtmsg_fib(int event, __be32 key, struct fib_alias *fa, int dst_len,
 	       u32 tb_id, const struct nl_info *info, unsigned int nlm_flags);
 struct fib_alias *fib_find_alias(struct list_head *fah, u8 tos, u32 prio);
-int fib_detect_death(struct fib_info *fi, int order,
-		     struct fib_info **last_resort, int *last_idx, int dflt);
 
 static inline void fib_result_assign(struct fib_result *res,
 				     struct fib_info *fi)
--- a/net/ipv4/fib_semantics.c	2013-12-24 15:15:26.849740111 -0800
+++ b/net/ipv4/fib_semantics.c	2013-12-24 15:15:59.393302735 -0800
@@ -426,7 +426,7 @@  struct fib_alias *fib_find_alias(struct
 	return NULL;
 }
 
-int fib_detect_death(struct fib_info *fi, int order,
+static int fib_detect_death(struct fib_info *fi, int order,
 		     struct fib_info **last_resort, int *last_idx, int dflt)
 {
 	struct neighbour *n;