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:	Sun, 20 Sep 2009 20:30:18 +0200
From:	Sam Ravnborg <sam@...nborg.org>
To:	lkml <linux-kernel@...r.kernel.org>,
	linux-kbuild <linux-kbuild@...r.kernel.org>,
	Albin Tonnerre <albin.tonnerre@...e-electrons.com>,
	Russell King <linux@....linux.org.uk>,
	Mikael Starvik <starvik@...s.com>,
	Jesper Nilsson <jesper.nilsson@...s.com>,
	Benjamin Herrenschmidt <benh@...nel.crashing.org>,
	Paul Mackerras <paulus@...ba.org>,
	"David S. Miller" <davem@...emloft.net>,
	Jeff Dike <jdike@...toit.com>, Chris Zankel <chris@...kel.net>
Subject: Re: [PATCH] arm, cris, mips, sparc, powerpc, um, xtensa: fix build
	with bash 4.0

> --- a/arch/mips/kernel/vmlinux.lds.S
> +++ b/arch/mips/kernel/vmlinux.lds.S
> @@ -10,7 +10,16 @@ PHDRS {
>  	text PT_LOAD FLAGS(7);	/* RWX */
>  	note PT_NOTE FLAGS(4);	/* R__ */
>  }
> -jiffies = JIFFIES;
> +
> +ifdef CONFIG_32BIT
> +	ifdef CONFIG_CPU_LITTLE_ENDIAN
> +		jiffies  = jiffies_64
> +	else
> +		jiffies  = jiffies_64 + 4
> +	endif
> +else
> +	jiffies  = jiffies_64
> +endif

This part miss ';' to terminate the assignment.
I already added this in my local patch but it was
accidently not included in the commit.

	Sam
--
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