• Firo Yang's avatar
    fib_trie: coding style: Use pointer after check · f38b24c9
    Firo Yang authored
    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: default avatarFiro Yang <firogm@gmail.com>
    Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
    f38b24c9
fib_trie.c 63.6 KB