From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from radon.swed.at (a.ns.miles-group.at [95.130.255.143]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "radon.swed.at", Issuer "neon.swed.at" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 8DB84B6FA7 for ; Fri, 3 Jun 2011 09:06:11 +1000 (EST) From: Richard Weinberger To: Tony Luck Subject: Re: [PATCH] Audit: push audit success and retcode into arch ptrace.h Date: Fri, 3 Jun 2011 01:03:46 +0200 References: <20110602210458.23613.24076.stgit@paris.rdu.redhat.com> <201106030032.17398.richard@nod.at> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="windows-1252" Message-Id: <201106030103.46742.richard@nod.at> Cc: linux-mips@linux-mips.org, linux-ia64@vger.kernel.org, linux-sh@vger.kernel.org, heiko.carstens@de.ibm.com, oleg@redhat.com, paulus@samba.org, ralf@linux-mips.org, hpa@zytor.com, sparclinux@vger.kernel.org, linux-s390@vger.kernel.org, x86@kernel.org, mingo@redhat.com, fenghua.yu@intel.com, user-mode-linux-devel@lists.sourceforge.net, microblaze-uclinux@itee.uq.edu.au, jdike@addtoit.com, viro@zeniv.linux.org.uk, tglx@linutronix.de, monstr@monstr.eu, linux-kernel@vger.kernel.org, Eric Paris , lethal@linux-sh.org, schwidefsky@de.ibm.com, linux390@de.ibm.com, akpm@linux-foundation.org, linuxppc-dev@lists.ozlabs.org, davem@davemloft.net List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Am Freitag 03 Juni 2011, 01:00:51 schrieb Tony Luck: > > But there seems to be another problem. > > Why is pt_regs of type void *? > >=20 > > gcc complains: > > In file included from include/linux/fsnotify.h:15:0, > > from include/linux/security.h:26, > > from init/main.c:32: > > include/linux/audit.h: In function =91audit_syscall_exit=92: > > include/linux/audit.h:440:17: warning: dereferencing =91void *=92 point= er > > include/linux/audit.h:440:3: error: invalid use of void expression > > include/linux/audit.h:441:21: warning: dereferencing =91void *=92 point= er > > include/linux/audit.h:441:21: error: void value not ignored as it ought > > to be >=20 > Perhaps same issue on ia64 - but symptoms are different: The void * pointer is the problem. On UML it builds fine when I cast it: #define regs_return_value(r) UPT_SYSCALL_RET((struct uml_pt_regs *)r) I'll test it tomorrow in detail, for now I'm too sleepy. Thanks, //richard