public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] reiserfs: select CRC32 and BITREVERSE for REISERFS_FS Kconfig entry
@ 2009-03-25 16:58 Coly Li
  2009-03-25 17:07 ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Coly Li @ 2009-03-25 16:58 UTC (permalink / raw)
  To: LKML; +Cc: Andrew Morton, Randy Dunlap

In patch fs-reiserfs-return-f_fsid-for-statfs2-v2.patch (from mmotm), crc32_le()
is referenced. If reiserfs is compiled into kernel and crc32_le() is compiled as
kernel module, there might be a compiling error as:
    fs/built-in.o: In function `reiserfs_statfs':
    super.c:(.text+0x7332b): undefined reference to `crc32_le'
    super.c:(.text+0x7333f): undefined reference to `crc32_le'
This patch select CRC32 and BITREVERSE for REISERFS_FS Kconfig entry, which
indicates compiling crc32_le() into kernel.

Thanks to Randy Dunlap for pointing out this error and providing helpful solution.

Signed-off-by: Coly Li <coly.li@suse.de>
Cc: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
---
 fs/reiserfs/Kconfig |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/fs/reiserfs/Kconfig b/fs/reiserfs/Kconfig
index 949b8c6..9712bea 100644
--- a/fs/reiserfs/Kconfig
+++ b/fs/reiserfs/Kconfig
@@ -1,5 +1,7 @@
 config REISERFS_FS
 	tristate "Reiserfs support"
+	select CRC32
+	select BITREVERSE
 	help
 	  Stores not just filenames but the files themselves in a balanced
 	  tree.  Uses journalling.
-- 
Coly Li
SuSE Labs

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

* Re: [PATCH] reiserfs: select CRC32 and BITREVERSE for REISERFS_FS Kconfig entry
  2009-03-25 16:58 [PATCH] reiserfs: select CRC32 and BITREVERSE for REISERFS_FS Kconfig entry Coly Li
@ 2009-03-25 17:07 ` Randy Dunlap
  2009-03-25 17:22   ` Coly Li
  2009-03-27  8:28   ` Coly Li
  0 siblings, 2 replies; 4+ messages in thread
From: Randy Dunlap @ 2009-03-25 17:07 UTC (permalink / raw)
  To: coly.li; +Cc: LKML, Andrew Morton

Coly Li wrote:
> In patch fs-reiserfs-return-f_fsid-for-statfs2-v2.patch (from mmotm), crc32_le()
> is referenced. If reiserfs is compiled into kernel and crc32_le() is compiled as
> kernel module, there might be a compiling error as:
>     fs/built-in.o: In function `reiserfs_statfs':
>     super.c:(.text+0x7332b): undefined reference to `crc32_le'
>     super.c:(.text+0x7333f): undefined reference to `crc32_le'
> This patch select CRC32 and BITREVERSE for REISERFS_FS Kconfig entry, which
> indicates compiling crc32_le() into kernel.
> 
> Thanks to Randy Dunlap for pointing out this error and providing helpful solution.
> 
> Signed-off-by: Coly Li <coly.li@suse.de>
> Cc: Randy Dunlap <randy.dunlap@oracle.com>

Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Tested-by: Randy Dunlap <randy.dunlap@oracle.com>

Thanks.

> Cc: Andrew Morton <akpm@linux-foundation.org>
> ---
>  fs/reiserfs/Kconfig |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/fs/reiserfs/Kconfig b/fs/reiserfs/Kconfig
> index 949b8c6..9712bea 100644
> --- a/fs/reiserfs/Kconfig
> +++ b/fs/reiserfs/Kconfig
> @@ -1,5 +1,7 @@
>  config REISERFS_FS
>  	tristate "Reiserfs support"
> +	select CRC32
> +	select BITREVERSE
>  	help
>  	  Stores not just filenames but the files themselves in a balanced
>  	  tree.  Uses journalling.


-- 
~Randy

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

* Re: [PATCH] reiserfs: select CRC32 and BITREVERSE for REISERFS_FS Kconfig entry
  2009-03-25 17:07 ` Randy Dunlap
@ 2009-03-25 17:22   ` Coly Li
  2009-03-27  8:28   ` Coly Li
  1 sibling, 0 replies; 4+ messages in thread
From: Coly Li @ 2009-03-25 17:22 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: LKML, Andrew Morton



Randy Dunlap Wrote:
> Coly Li wrote:
>> In patch fs-reiserfs-return-f_fsid-for-statfs2-v2.patch (from mmotm), crc32_le()
>> is referenced. If reiserfs is compiled into kernel and crc32_le() is compiled as
>> kernel module, there might be a compiling error as:
>>     fs/built-in.o: In function `reiserfs_statfs':
>>     super.c:(.text+0x7332b): undefined reference to `crc32_le'
>>     super.c:(.text+0x7333f): undefined reference to `crc32_le'
>> This patch select CRC32 and BITREVERSE for REISERFS_FS Kconfig entry, which
>> indicates compiling crc32_le() into kernel.
>>
>> Thanks to Randy Dunlap for pointing out this error and providing helpful solution.
>>
>> Signed-off-by: Coly Li <coly.li@suse.de>
>> Cc: Randy Dunlap <randy.dunlap@oracle.com>
> 
> Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
> Tested-by: Randy Dunlap <randy.dunlap@oracle.com>

Hi Randy,

You give me an important enlightenment, for my return-f_fsid-for-statfs2 patch
serial, selecting CRC32 and BITREVERSE is necessary ...

Andrew,

I will check it and send out fix ASAP.

Thanks.

-- 
Coly Li
SuSE Labs

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

* Re: [PATCH] reiserfs: select CRC32 and BITREVERSE for REISERFS_FS Kconfig entry
  2009-03-25 17:07 ` Randy Dunlap
  2009-03-25 17:22   ` Coly Li
@ 2009-03-27  8:28   ` Coly Li
  1 sibling, 0 replies; 4+ messages in thread
From: Coly Li @ 2009-03-27  8:28 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: LKML, Andrew Morton



Randy Dunlap Wrote:
> Coly Li wrote:
>> In patch fs-reiserfs-return-f_fsid-for-statfs2-v2.patch (from mmotm), crc32_le()
>> is referenced. If reiserfs is compiled into kernel and crc32_le() is compiled as
>> kernel module, there might be a compiling error as:
>>     fs/built-in.o: In function `reiserfs_statfs':
>>     super.c:(.text+0x7332b): undefined reference to `crc32_le'
>>     super.c:(.text+0x7333f): undefined reference to `crc32_le'
>> This patch select CRC32 and BITREVERSE for REISERFS_FS Kconfig entry, which
>> indicates compiling crc32_le() into kernel.
>>
>> Thanks to Randy Dunlap for pointing out this error and providing helpful solution.
>>
>> Signed-off-by: Coly Li <coly.li@suse.de>
>> Cc: Randy Dunlap <randy.dunlap@oracle.com>
> 
> Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
> Tested-by: Randy Dunlap <randy.dunlap@oracle.com>
> 
> Thanks.
> 

Hi Randy,

I just find only select CRC32 is enough, because crc32 code in sequence selects
BITREVERSE in lib/Kconfig. I verified it on my x86_64 machine.

BTW, in mmotm, only fs-reiserfs-return-f_fsid-for-statfs2-v2.patch of the
return-f_fsid-for-statfs2 patch serial which calls crc32_le(). Therefore I will
not update other patches and only merge the modification of fs/reiserfs/Kconfig
to fs-reiserfs-return-f_fsid-for-statfs2-v3.patch. I will Cc you as well.

Thanks.

>> Cc: Andrew Morton <akpm@linux-foundation.org>
>> ---
>>  fs/reiserfs/Kconfig |    2 ++
>>  1 files changed, 2 insertions(+), 0 deletions(-)
>>
>> diff --git a/fs/reiserfs/Kconfig b/fs/reiserfs/Kconfig
>> index 949b8c6..9712bea 100644
>> --- a/fs/reiserfs/Kconfig
>> +++ b/fs/reiserfs/Kconfig
>> @@ -1,5 +1,7 @@
>>  config REISERFS_FS
>>  	tristate "Reiserfs support"
>> +	select CRC32
>> +	select BITREVERSE
>>  	help
>>  	  Stores not just filenames but the files themselves in a balanced
>>  	  tree.  Uses journalling.
> 
> 

-- 
Coly Li
SuSE Labs

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

end of thread, other threads:[~2009-03-27  8:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-25 16:58 [PATCH] reiserfs: select CRC32 and BITREVERSE for REISERFS_FS Kconfig entry Coly Li
2009-03-25 17:07 ` Randy Dunlap
2009-03-25 17:22   ` Coly Li
2009-03-27  8:28   ` Coly Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox