Commit 437de07c authored by Wang Yufen's avatar Wang Yufen Committed by David S. Miller

ipv6: fix checkpatch errors of "foo*" and "foo * bar"

ERROR: "(foo*)" should be "(foo *)"
ERROR: "foo * bar" should be "foo *bar"
Suggested-by: default avatarSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: default avatarWang Yufen <wangyufen@huawei.com>
Acked-by: default avatarSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 49e253e3
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
#define RT6_TRACE(x...) do { ; } while (0) #define RT6_TRACE(x...) do { ; } while (0)
#endif #endif
static struct kmem_cache * fib6_node_kmem __read_mostly; static struct kmem_cache *fib6_node_kmem __read_mostly;
enum fib_walk_state_t { enum fib_walk_state_t {
#ifdef CONFIG_IPV6_SUBTREES #ifdef CONFIG_IPV6_SUBTREES
...@@ -143,7 +143,7 @@ static __inline__ __be32 addr_bit_set(const void *token, int fn_bit) ...@@ -143,7 +143,7 @@ static __inline__ __be32 addr_bit_set(const void *token, int fn_bit)
addr[fn_bit >> 5]; addr[fn_bit >> 5];
} }
static __inline__ struct fib6_node * node_alloc(void) static __inline__ struct fib6_node *node_alloc(void)
{ {
struct fib6_node *fn; struct fib6_node *fn;
...@@ -152,7 +152,7 @@ static __inline__ struct fib6_node * node_alloc(void) ...@@ -152,7 +152,7 @@ static __inline__ struct fib6_node * node_alloc(void)
return fn; return fn;
} }
static __inline__ void node_free(struct fib6_node * fn) static __inline__ void node_free(struct fib6_node *fn)
{ {
kmem_cache_free(fib6_node_kmem, fn); kmem_cache_free(fib6_node_kmem, fn);
} }
...@@ -288,7 +288,7 @@ static int fib6_dump_node(struct fib6_walker_t *w) ...@@ -288,7 +288,7 @@ static int fib6_dump_node(struct fib6_walker_t *w)
static void fib6_dump_end(struct netlink_callback *cb) static void fib6_dump_end(struct netlink_callback *cb)
{ {
struct fib6_walker_t *w = (void*)cb->args[2]; struct fib6_walker_t *w = (void *)cb->args[2];
if (w) { if (w) {
if (cb->args[4]) { if (cb->args[4]) {
...@@ -298,7 +298,7 @@ static void fib6_dump_end(struct netlink_callback *cb) ...@@ -298,7 +298,7 @@ static void fib6_dump_end(struct netlink_callback *cb)
cb->args[2] = 0; cb->args[2] = 0;
kfree(w); kfree(w);
} }
cb->done = (void*)cb->args[3]; cb->done = (void *)cb->args[3];
cb->args[1] = 3; cb->args[1] = 3;
} }
...@@ -992,8 +992,8 @@ struct lookup_args { ...@@ -992,8 +992,8 @@ struct lookup_args {
const struct in6_addr *addr; /* search key */ const struct in6_addr *addr; /* search key */
}; };
static struct fib6_node * fib6_lookup_1(struct fib6_node *root, static struct fib6_node *fib6_lookup_1(struct fib6_node *root,
struct lookup_args *args) struct lookup_args *args)
{ {
struct fib6_node *fn; struct fib6_node *fn;
__be32 dir; __be32 dir;
...@@ -1055,8 +1055,8 @@ static struct fib6_node * fib6_lookup_1(struct fib6_node *root, ...@@ -1055,8 +1055,8 @@ static struct fib6_node * fib6_lookup_1(struct fib6_node *root,
return NULL; return NULL;
} }
struct fib6_node * fib6_lookup(struct fib6_node *root, const struct in6_addr *daddr, struct fib6_node *fib6_lookup(struct fib6_node *root, const struct in6_addr *daddr,
const struct in6_addr *saddr) const struct in6_addr *saddr)
{ {
struct fib6_node *fn; struct fib6_node *fn;
struct lookup_args args[] = { struct lookup_args args[] = {
...@@ -1088,9 +1088,9 @@ struct fib6_node * fib6_lookup(struct fib6_node *root, const struct in6_addr *da ...@@ -1088,9 +1088,9 @@ struct fib6_node * fib6_lookup(struct fib6_node *root, const struct in6_addr *da
*/ */
static struct fib6_node * fib6_locate_1(struct fib6_node *root, static struct fib6_node *fib6_locate_1(struct fib6_node *root,
const struct in6_addr *addr, const struct in6_addr *addr,
int plen, int offset) int plen, int offset)
{ {
struct fib6_node *fn; struct fib6_node *fn;
...@@ -1118,9 +1118,9 @@ static struct fib6_node * fib6_locate_1(struct fib6_node *root, ...@@ -1118,9 +1118,9 @@ static struct fib6_node * fib6_locate_1(struct fib6_node *root,
return NULL; return NULL;
} }
struct fib6_node * fib6_locate(struct fib6_node *root, struct fib6_node *fib6_locate(struct fib6_node *root,
const struct in6_addr *daddr, int dst_len, const struct in6_addr *daddr, int dst_len,
const struct in6_addr *saddr, int src_len) const struct in6_addr *saddr, int src_len)
{ {
struct fib6_node *fn; struct fib6_node *fn;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment