Recently I was learning doubly linked list in kernel, there are many
macro in linux/fs.h, like list_add, list_del,list_for_each,list_entry,
container_of.
I know we can use "gcc -E" to expand the macro, but how do we expand
the macro in kernel source code / kernel module?
    - mudongliang