linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch] DLM: fix kconfig dependency
@ 2007-06-22 14:06 Andreas Herrmann
  2007-06-22 18:05 ` David Teigland
  0 siblings, 1 reply; 3+ messages in thread
From: Andreas Herrmann @ 2007-06-22 14:06 UTC (permalink / raw)
  To: linux-kernel, cluster-devel

Avoid kernel build error (as DLM depends on SYSFS)
    
  LD      vmlinux
  fs/built-in.o: In function `dlm_lockspace_init':
  : undefined reference to `kernel_subsys'
  fs/built-in.o: In function `configfs_init':
  mount.c:(.init.text+0xef4): undefined reference to `kernel_subsys'
    
Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>

diff --git a/fs/dlm/Kconfig b/fs/dlm/Kconfig
index 69a9469..c0e4c59 100644
--- a/fs/dlm/Kconfig
+++ b/fs/dlm/Kconfig
@@ -1,5 +1,5 @@
 menu "Distributed Lock Manager"
-	depends on EXPERIMENTAL && INET
+	depends on EXPERIMENTAL && INET && SYSFS
 
 config DLM
 	tristate "Distributed Lock Manager (DLM)"




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [patch] DLM: fix kconfig dependency
  2007-06-22 14:06 [patch] DLM: fix kconfig dependency Andreas Herrmann
@ 2007-06-22 18:05 ` David Teigland
  2007-06-22 18:35   ` Satyam Sharma
  0 siblings, 1 reply; 3+ messages in thread
From: David Teigland @ 2007-06-22 18:05 UTC (permalink / raw)
  To: Andreas Herrmann; +Cc: linux-kernel, cluster-devel

On Fri, Jun 22, 2007 at 04:06:15PM +0200, Andreas Herrmann wrote:
> Avoid kernel build error (as DLM depends on SYSFS)
>     
>   LD      vmlinux
>   fs/built-in.o: In function `dlm_lockspace_init':
>   : undefined reference to `kernel_subsys'
>   fs/built-in.o: In function `configfs_init':
>   mount.c:(.init.text+0xef4): undefined reference to `kernel_subsys'
>     
> Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>
> 
> diff --git a/fs/dlm/Kconfig b/fs/dlm/Kconfig
> index 69a9469..c0e4c59 100644
> --- a/fs/dlm/Kconfig
> +++ b/fs/dlm/Kconfig
> @@ -1,5 +1,5 @@
>  menu "Distributed Lock Manager"
> -	depends on EXPERIMENTAL && INET
> +	depends on EXPERIMENTAL && INET && SYSFS
>  
>  config DLM
>  	tristate "Distributed Lock Manager (DLM)"

There's a been a lot of back and forth on this from a number of different
people:

1/18/06   depends on SYSFS
4/25/06 - depends on SYSFS
2/05/07 + select SYSFS
2/05/07 - select SYSFS
        + depends on SYSFS
5/01/07 - depends on SYSFS

It looks like the last removal was in error and it should be added back.

Dave


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [patch] DLM: fix kconfig dependency
  2007-06-22 18:05 ` David Teigland
@ 2007-06-22 18:35   ` Satyam Sharma
  0 siblings, 0 replies; 3+ messages in thread
From: Satyam Sharma @ 2007-06-22 18:35 UTC (permalink / raw)
  To: David Teigland; +Cc: Andreas Herrmann, linux-kernel, cluster-devel

On 6/22/07, David Teigland <teigland@redhat.com> wrote:
> On Fri, Jun 22, 2007 at 04:06:15PM +0200, Andreas Herrmann wrote:
> > Avoid kernel build error (as DLM depends on SYSFS)
> >
> >   LD      vmlinux
> >   fs/built-in.o: In function `dlm_lockspace_init':
> >   : undefined reference to `kernel_subsys'
> >   fs/built-in.o: In function `configfs_init':
> >   mount.c:(.init.text+0xef4): undefined reference to `kernel_subsys'
> >
> > Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>
> >
> > diff --git a/fs/dlm/Kconfig b/fs/dlm/Kconfig
> > index 69a9469..c0e4c59 100644
> > --- a/fs/dlm/Kconfig
> > +++ b/fs/dlm/Kconfig
> > @@ -1,5 +1,5 @@
> >  menu "Distributed Lock Manager"
> > -     depends on EXPERIMENTAL && INET
> > +     depends on EXPERIMENTAL && INET && SYSFS
> >
> >  config DLM
> >       tristate "Distributed Lock Manager (DLM)"
>
> There's a been a lot of back and forth on this from a number of different
> people:
>
> 1/18/06   depends on SYSFS
> 4/25/06 - depends on SYSFS
> 2/05/07 + select SYSFS
> 2/05/07 - select SYSFS
>         + depends on SYSFS
> 5/01/07 - depends on SYSFS
>
> It looks like the last removal was in error and it should be added back.

DLM needs to depend on SYSFS for another reason: it directly
"select"s CONFIGFS_FS when configfs itself "depends on SYSFS".
I suspect it selects configfs directly to make it easier to pick DLM,
by not forcing users to first go and pick configfs just to make DLM
visible in menuconfig, but such usage of select is generally "evil".

There was a thread started by Al Viro some time back which
started discussions on possible kbuild-solutions to this "select
of a symbol that itself depends on another" problem, but I'm not
sure what happened of that ...

Satyam

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-06-22 18:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-06-22 14:06 [patch] DLM: fix kconfig dependency Andreas Herrmann
2007-06-22 18:05 ` David Teigland
2007-06-22 18:35   ` Satyam Sharma

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).