Re: [PATCH] net: atm: Fix build error when !CONFIG_PROC_FS

From: David Miller
Date: Thu Jan 19 2017 - 11:33:12 EST


From: Augusto Mecking Caringi <augustocaringi@xxxxxxxxx>
Date: Thu, 19 Jan 2017 11:00:12 +0000

> When CONFIG_ATM_CLIP is set and CONFIG_PROC_FS is not set, the building
> was failing whith the error:
>
> net/atm/clip.c: In function ʽatm_clip_exitʼ:
> net/atm/clip.c:933:27: error: ʽatm_proc_rootʼ undeclared (first use in
> this function)
> remove_proc_entry("arp", atm_proc_root);
> ^
>
> Fix it by putting the proc cleanup code inside a #ifdef CONFIG_PROC_FS
> block.
>
> Signed-off-by: Augusto Mecking Caringi <augustocaringi@xxxxxxxxx>

When CONFIG_PROC_FS is not defined, remove_proc_entry is defined as the
macro:

#define remove_proc_entry(name, parent) do {} while (0)

Therefore it is impossible for atm_proc_root to be referened in any way.

The fallback macro is designed exactly so that ugly ifdefs like the one
you are proposing aren't necessary.

I'm not applyiing this patch, something else is happening in your tree.