public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: jffs2 build fixes
       [not found] <200604010831.57875.david-b@pacbell.net>
@ 2006-05-16 14:55 ` David Brownell
  2006-05-16 15:08   ` David Woodhouse
  2006-05-16 15:09   ` Jörn Engel
  0 siblings, 2 replies; 7+ messages in thread
From: David Brownell @ 2006-05-16 14:55 UTC (permalink / raw)
  To: jffs-dev; +Cc: dwmw2, Linux Kernel list

[-- Attachment #1: Type: text/plain, Size: 368 bytes --]

On Saturday 01 April 2006 8:31 am, David Brownell wrote:
> against today's GIT; there's a section error and
> several printk format warnings.  x86_64.

I see that Andrew also got tired of such printk warnings, so his
fix is now in the kernel.org tree ... here's a resend of this
patch, updated against today's GIT by removing two of the printk
warning fixes.

- Dave


[-- Attachment #2: build.patch --]
[-- Type: text/x-diff, Size: 2768 bytes --]

Resolve some JFFS2 build problems:
  (a) section mismatch error
  (b) wrong printk format warnings

The section mismatch issue was fixed by making a few more routines as
belonging in init or exit sections, but there are more routines that
could (should!) get such annotations.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>

Index: g26/fs/jffs2/compr.c
===================================================================
--- g26.orig/fs/jffs2/compr.c	2006-05-12 18:48:21.000000000 -0700
+++ g26/fs/jffs2/compr.c	2006-05-12 19:40:08.000000000 -0700
@@ -412,7 +412,7 @@ void jffs2_free_comprbuf(unsigned char *
                 kfree(comprbuf);
 }
 
-int jffs2_compressors_init(void)
+int __init jffs2_compressors_init(void)
 {
 /* Registering compressors */
 #ifdef CONFIG_JFFS2_ZLIB
@@ -440,7 +440,7 @@ int jffs2_compressors_init(void)
         return 0;
 }
 
-int jffs2_compressors_exit(void)
+int __exit jffs2_compressors_exit(void)
 {
 /* Unregistering compressors */
 #ifdef CONFIG_JFFS2_RUBIN
Index: g26/fs/jffs2/compr_zlib.c
===================================================================
--- g26.orig/fs/jffs2/compr_zlib.c	2006-05-12 18:48:21.000000000 -0700
+++ g26/fs/jffs2/compr_zlib.c	2006-05-12 19:40:08.000000000 -0700
@@ -60,7 +60,7 @@ static int __init alloc_workspaces(void)
 	return 0;
 }
 
-static void free_workspaces(void)
+static void __exit free_workspaces(void)
 {
 	vfree(def_strm.workspace);
 	vfree(inf_strm.workspace);
@@ -216,7 +216,7 @@ int __init jffs2_zlib_init(void)
     return ret;
 }
 
-void jffs2_zlib_exit(void)
+void __exit jffs2_zlib_exit(void)
 {
     jffs2_unregister_compressor(&jffs2_zlib_comp);
     free_workspaces();
Index: g26/fs/jffs2/readinode.c
===================================================================
--- g26.orig/fs/jffs2/readinode.c	2006-05-12 18:48:21.000000000 -0700
+++ g26/fs/jffs2/readinode.c	2006-05-12 19:40:08.000000000 -0700
@@ -204,7 +204,7 @@ static inline int read_dnode(struct jffs
 
 	tn = jffs2_alloc_tmp_dnode_info();
 	if (!tn) {
-		JFFS2_ERROR("failed to allocate tn (%d bytes).\n", sizeof(*tn));
+		JFFS2_ERROR("failed to allocate tn (%zd bytes).\n", sizeof(*tn));
 		return -ENOMEM;
 	}
 
@@ -434,7 +434,7 @@ static int read_more(struct jffs2_sb_inf
 	}
 
 	if (retlen < len) {
-		JFFS2_ERROR("short read at %#08x: %d instead of %d.\n",
+		JFFS2_ERROR("short read at %#08x: %zu instead of %d.\n",
 				offs, retlen, len);
 		return -EIO;
 	}
@@ -542,7 +542,8 @@ static int jffs2_get_inode_nodes(struct 
 		}
 
 		if (retlen < len) {
-			JFFS2_ERROR("short read at %#08x: %d instead of %d.\n", ref_offset(ref), retlen, len);
+			JFFS2_ERROR("short read at %#08x: %zd instead of %d.\n",
+					ref_offset(ref), retlen, len);
 			err = -EIO;
 			goto free_out;
 		}

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

* Re: jffs2 build fixes
  2006-05-16 14:55 ` jffs2 build fixes David Brownell
@ 2006-05-16 15:08   ` David Woodhouse
  2006-05-25  4:02     ` David Brownell
  2006-05-16 15:09   ` Jörn Engel
  1 sibling, 1 reply; 7+ messages in thread
From: David Woodhouse @ 2006-05-16 15:08 UTC (permalink / raw)
  To: David Brownell; +Cc: jffs-dev, Linux Kernel list

On Tue, 2006-05-16 at 07:55 -0700, David Brownell wrote:
> I see that Andrew also got tired of such printk warnings, so his
> fix is now in the kernel.org tree ... here's a resend of this
> patch, updated against today's GIT by removing two of the printk
> warning fixes.

The other three printk watning fixes don't seem to apply any more
either. I've committed the __init and __exit bits though. Thanks.

-- 
dwmw2


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

* Re: jffs2 build fixes
  2006-05-16 14:55 ` jffs2 build fixes David Brownell
  2006-05-16 15:08   ` David Woodhouse
@ 2006-05-16 15:09   ` Jörn Engel
  2006-05-16 15:25     ` David Brownell
  1 sibling, 1 reply; 7+ messages in thread
From: Jörn Engel @ 2006-05-16 15:09 UTC (permalink / raw)
  To: David Brownell; +Cc: jffs-dev, dwmw2, Linux Kernel list, linux-mtd

On Tue, 16 May 2006 07:55:37 -0700, David Brownell wrote:
> On Saturday 01 April 2006 8:31 am, David Brownell wrote:
> > against today's GIT; there's a section error and
> > several printk format warnings.  x86_64.
> 
> I see that Andrew also got tired of such printk warnings, so his
> fix is now in the kernel.org tree ... here's a resend of this
> patch, updated against today's GIT by removing two of the printk
> warning fixes.

jffs-dev@axis.com is practically dead.  Iirc, the list was used for
the old jffs[1] code.  Jffs2 is usually discussed on
linux-mtd@lists.infradead.org (added to Cc:).

> Resolve some JFFS2 build problems:
>   (a) section mismatch error
>   (b) wrong printk format warnings
> 
> The section mismatch issue was fixed by making a few more routines as
> belonging in init or exit sections, but there are more routines that
> could (should!) get such annotations.

Patch looks sane.  Does it still apply against dwmw2's latest tree?
http://git.infradead.org/?p=mtd-2.6.git

[ Patch kept for the benefit of linux-mtd ]

> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
> 
> Index: g26/fs/jffs2/compr.c
> ===================================================================
> --- g26.orig/fs/jffs2/compr.c	2006-05-12 18:48:21.000000000 -0700
> +++ g26/fs/jffs2/compr.c	2006-05-12 19:40:08.000000000 -0700
> @@ -412,7 +412,7 @@ void jffs2_free_comprbuf(unsigned char *
>                  kfree(comprbuf);
>  }
>  
> -int jffs2_compressors_init(void)
> +int __init jffs2_compressors_init(void)
>  {
>  /* Registering compressors */
>  #ifdef CONFIG_JFFS2_ZLIB
> @@ -440,7 +440,7 @@ int jffs2_compressors_init(void)
>          return 0;
>  }
>  
> -int jffs2_compressors_exit(void)
> +int __exit jffs2_compressors_exit(void)
>  {
>  /* Unregistering compressors */
>  #ifdef CONFIG_JFFS2_RUBIN
> Index: g26/fs/jffs2/compr_zlib.c
> ===================================================================
> --- g26.orig/fs/jffs2/compr_zlib.c	2006-05-12 18:48:21.000000000 -0700
> +++ g26/fs/jffs2/compr_zlib.c	2006-05-12 19:40:08.000000000 -0700
> @@ -60,7 +60,7 @@ static int __init alloc_workspaces(void)
>  	return 0;
>  }
>  
> -static void free_workspaces(void)
> +static void __exit free_workspaces(void)
>  {
>  	vfree(def_strm.workspace);
>  	vfree(inf_strm.workspace);
> @@ -216,7 +216,7 @@ int __init jffs2_zlib_init(void)
>      return ret;
>  }
>  
> -void jffs2_zlib_exit(void)
> +void __exit jffs2_zlib_exit(void)
>  {
>      jffs2_unregister_compressor(&jffs2_zlib_comp);
>      free_workspaces();
> Index: g26/fs/jffs2/readinode.c
> ===================================================================
> --- g26.orig/fs/jffs2/readinode.c	2006-05-12 18:48:21.000000000 -0700
> +++ g26/fs/jffs2/readinode.c	2006-05-12 19:40:08.000000000 -0700
> @@ -204,7 +204,7 @@ static inline int read_dnode(struct jffs
>  
>  	tn = jffs2_alloc_tmp_dnode_info();
>  	if (!tn) {
> -		JFFS2_ERROR("failed to allocate tn (%d bytes).\n", sizeof(*tn));
> +		JFFS2_ERROR("failed to allocate tn (%zd bytes).\n", sizeof(*tn));
>  		return -ENOMEM;
>  	}
>  
> @@ -434,7 +434,7 @@ static int read_more(struct jffs2_sb_inf
>  	}
>  
>  	if (retlen < len) {
> -		JFFS2_ERROR("short read at %#08x: %d instead of %d.\n",
> +		JFFS2_ERROR("short read at %#08x: %zu instead of %d.\n",
>  				offs, retlen, len);
>  		return -EIO;
>  	}
> @@ -542,7 +542,8 @@ static int jffs2_get_inode_nodes(struct 
>  		}
>  
>  		if (retlen < len) {
> -			JFFS2_ERROR("short read at %#08x: %d instead of %d.\n", ref_offset(ref), retlen, len);
> +			JFFS2_ERROR("short read at %#08x: %zd instead of %d.\n",
> +					ref_offset(ref), retlen, len);
>  			err = -EIO;
>  			goto free_out;
>  		}


Jörn

-- 
They laughed at Galileo.  They laughed at Copernicus.  They laughed at
Columbus. But remember, they also laughed at Bozo the Clown.
-- unknown

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

* Re: jffs2 build fixes
  2006-05-16 15:09   ` Jörn Engel
@ 2006-05-16 15:25     ` David Brownell
  2006-05-16 15:33       ` Jörn Engel
  0 siblings, 1 reply; 7+ messages in thread
From: David Brownell @ 2006-05-16 15:25 UTC (permalink / raw)
  To: Jörn Engel; +Cc: jffs-dev, dwmw2, Linux Kernel list, linux-mtd

On Tuesday 16 May 2006 8:09 am, Jörn Engel wrote:

> jffs-dev@axis.com is practically dead.  Iirc, the list was used for
> the old jffs[1] code.  Jffs2 is usually discussed on
> linux-mtd@lists.infradead.org (added to Cc:).

Then it's overdue for the MAINTAINERS file to be updated ... it
seems wrong that the official "where to go" listing for JFFS2
points at a black hole.




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

* Re: jffs2 build fixes
  2006-05-16 15:25     ` David Brownell
@ 2006-05-16 15:33       ` Jörn Engel
  2006-05-16 15:34         ` David Woodhouse
  0 siblings, 1 reply; 7+ messages in thread
From: Jörn Engel @ 2006-05-16 15:33 UTC (permalink / raw)
  To: David Brownell; +Cc: jffs-dev, dwmw2, Linux Kernel list, linux-mtd

On Tue, 16 May 2006 08:25:52 -0700, David Brownell wrote:
> On Tuesday 16 May 2006 8:09 am, Jörn Engel wrote:
> 
> > jffs-dev@axis.com is practically dead.  Iirc, the list was used for
> > the old jffs[1] code.  Jffs2 is usually discussed on
> > linux-mtd@lists.infradead.org (added to Cc:).
> 
> Then it's overdue for the MAINTAINERS file to be updated ... it
> seems wrong that the official "where to go" listing for JFFS2
> points at a black hole.

Ouch!  Yes, you are correct.

Can you send a patch to dwmw2?

Jörn

-- 
Write programs that do one thing and do it well. Write programs to work
together. Write programs to handle text streams, because that is a
universal interface. 
-- Doug MacIlroy

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

* Re: jffs2 build fixes
  2006-05-16 15:33       ` Jörn Engel
@ 2006-05-16 15:34         ` David Woodhouse
  0 siblings, 0 replies; 7+ messages in thread
From: David Woodhouse @ 2006-05-16 15:34 UTC (permalink / raw)
  To: Jörn Engel; +Cc: David Brownell, jffs-dev, Linux Kernel list, linux-mtd

On Tue, 2006-05-16 at 17:33 +0200, Jörn Engel wrote:
> Ouch!  Yes, you are correct.
> 
> Can you send a patch to dwmw2? 

dwmw2 is still subscribed to jffs-dev and responds... when the
moderators eventually approve non-subscriber posts, at least :)

Changing it to linux-mtd@lists.infradead.org would seem to make sense
though.

-- 
dwmw2


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

* Re: jffs2 build fixes
  2006-05-16 15:08   ` David Woodhouse
@ 2006-05-25  4:02     ` David Brownell
  0 siblings, 0 replies; 7+ messages in thread
From: David Brownell @ 2006-05-25  4:02 UTC (permalink / raw)
  To: David Woodhouse; +Cc: jffs-dev, Linux Kernel list

On Tuesday 16 May 2006 8:08 am, David Woodhouse wrote:
> On Tue, 2006-05-16 at 07:55 -0700, David Brownell wrote:
> > I see that Andrew also got tired of such printk warnings, so his
> > fix is now in the kernel.org tree ... here's a resend of this
> > patch, updated against today's GIT by removing two of the printk
> > warning fixes.
> 
> The other three printk watning fixes don't seem to apply any more
> either. I've committed the __init and __exit bits though. Thanks.

I'm getting section warnings with RC5 building JFFS2 as an x86 module;
the ZLIB compressors it seems.

You might want to push those __init and __exit bits soon ...

- Dave

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

end of thread, other threads:[~2006-05-25  4:02 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <200604010831.57875.david-b@pacbell.net>
2006-05-16 14:55 ` jffs2 build fixes David Brownell
2006-05-16 15:08   ` David Woodhouse
2006-05-25  4:02     ` David Brownell
2006-05-16 15:09   ` Jörn Engel
2006-05-16 15:25     ` David Brownell
2006-05-16 15:33       ` Jörn Engel
2006-05-16 15:34         ` David Woodhouse

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