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:	Mon, 05 Oct 2015 12:58:04 +0200
From:	Arnd Bergmann <arnd@...db.de>
To:	Manjeet Pawar <manjeet.p@...sung.com>
Cc:	linux-arch@...r.kernel.org, linux-api@...r.kernel.org,
	linux-kernel@...r.kernel.org, pankaj.m@...sung.com,
	Akhilesh Kumar <akhilesh.k@...sung.com>,
	Rohit Thapliyal <r.thapliyal@...sung.com>
Subject: Re: [PATCH] ARM64:Fix MINSIGSTKSZ and SIGSTKSZ

On Monday 05 October 2015 15:26:09 Manjeet Pawar wrote:
> -#define MINSIGSTKSZ    2048
> -#define SIGSTKSZ       8192
> +#ifdef CONFIG_ARM64
> +#define MINSIGSTKSZ 5120
> +#define SIGSTKSZ    16384
> +#else
> +#define MINSIGSTKSZ 2048
> +#define SIGSTKSZ    8192
> +#endif

uapi header files cannot use CONFIG_* symbols, as they are not visible
in user space.

If these have to be architecture-specific, override them in
arch/arm64/include/uapi/asm/signal.h

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