]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
fib_trie: coding style: Use pointer after check
authorFiro Yang <firogm@gmail.com>
Mon, 8 Jun 2015 03:54:51 +0000 (11:54 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 8 Jun 2015 06:45:40 +0000 (23:45 -0700)
commitf38b24c90528c888915ef6e3bc320bdb30b14cf2
treefb9220fc44e94ead33fa8165c5bc2cf1301e8618
parentcbab1510afbb140f7a51d996eafc525ac316c667
fib_trie: coding style: Use pointer after check

As Alexander Duyck pointed out that:
struct tnode {
        ...
        struct key_vector kv[1];
}
The kv[1] member of struct tnode is an arry that refernced by
a null pointer will not crash the system, like this:
struct tnode *p = NULL;
struct key_vector *kv = p->kv;
As such p->kv doesn't actually dereference anything, it is simply a
means for getting the offset to the array from the pointer p.

This patch make the code more regular to avoid making people feel
odd when they look at the code.

Signed-off-by: Firo Yang <firogm@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/fib_trie.c