lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Sat, 05 May 2007 19:44:29 -0400
From:	Trond Myklebust <trond.myklebust@....uio.no>
To:	Ralf Baechle <ralf@...ux-mips.org>
Cc:	Linus Torvalds <torvalds@...ux-foundation.org>,
	Andrew Morton <akpm@...ux-foundation.org>,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH] Fix nfsroot build

On Sat, 2007-05-05 at 22:05 +0100, Ralf Baechle wrote:
> CC      fs/nfs/nfsroot.o
> fs/nfs/nfsroot.c:131: error: tokens causes a section type conflict
> make[2]: *** [fs/nfs/nfsroot.o] Error 1
> 
> This is due to mixing const and non-const content in the same section
> which halfway recent gccs absolutely hate.  Fixed by dropping the const.
> 
> Signed-off-by: Ralf Baechle <ralf@...ux-mips.org>
Acked-by: Trond Myklebust <Trond.Myklebust@...app.com>
> 
> diff --git a/include/linux/parser.h b/include/linux/parser.h
> index 86676f6..26b2bdf 100644
> --- a/include/linux/parser.h
> +++ b/include/linux/parser.h
> @@ -14,7 +14,7 @@ struct match_token {
>  	const char *pattern;
>  };
>  
> -typedef const struct match_token match_table_t[];
> +typedef struct match_token match_table_t[];
>  
>  /* Maximum number of arguments that match_token will find in a pattern */
>  enum {MAX_OPT_ARGS = 3};
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ