All of lore.kernel.org
 help / color / mirror / Atom feed
* linux-next: build failure after merge of the audit tree
@ 2013-11-06  6:27 Stephen Rothwell
  2013-11-06 16:54 ` Eric Paris
  0 siblings, 1 reply; 10+ messages in thread
From: Stephen Rothwell @ 2013-11-06  6:27 UTC (permalink / raw)
  To: Eric Paris; +Cc: linux-next, linux-kernel, Richard Guy Briggs

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

Hi Eric,

After merging the audit tree, today's linux-next build (x86_64
allmodconfig) failed like this:

kernel/auditsc.c: In function 'audit_set_loginuid':
kernel/auditsc.c:2003:15: error: incompatible types when assigning to type 'kuid_t' from type 'int'
  oldsessionid = audit_get_sessionid(current);
               ^
kernel/auditsc.c:2016:2: error: incompatible type for argument 3 of 'audit_log_set_loginuid'
  audit_log_set_loginuid(oldloginuid, loginuid, oldsessionid, sessionid, rc);
  ^
kernel/auditsc.c:1967:13: note: expected 'unsigned int' but argument is of type 'kuid_t'
 static void audit_log_set_loginuid(kuid_t koldloginuid, kuid_t kloginuid,
             ^

Caused by commit da0a610497ce ("audit: loginuid functions coding style").

I have used the version of the audit tree from next-20131105 for today.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread
* linux-next: build failure after merge of the audit tree
@ 2014-04-22  6:22 ` Stephen Rothwell
  0 siblings, 0 replies; 10+ messages in thread
From: Stephen Rothwell @ 2014-04-22  6:22 UTC (permalink / raw)
  To: Eric Paris; +Cc: linux-next, linux-kernel, Richard Briggs, sparclinux

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

Hi Eric,

After merging the audit tree, today's linux-next build (sparc defconfig)
failed like this:

In file included from include/linux/audit.h:29:0,
                 from mm/mmap.c:33:
arch/sparc/include/asm/syscall.h: In function 'syscall_get_arch':
arch/sparc/include/asm/syscall.h:131:9: error: 'TIF_32BIT' undeclared (first use in this function)
arch/sparc/include/asm/syscall.h:131:9: note: each undeclared identifier is reported only once for each function it appears in

And many more ...

Caused by commit 374c0c054122 ("ARCH: AUDIT: implement syscall_get_arch
for all arches").

I applied this patch for today:

From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Tue, 22 Apr 2014 16:18:53 +1000
Subject: [PATCH] fix ARCH: AUDIT: implement syscall_get_arch for all arches

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
 arch/sparc/include/asm/syscall.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/sparc/include/asm/syscall.h b/arch/sparc/include/asm/syscall.h
index fed3d511b108..a5a8153766b3 100644
--- a/arch/sparc/include/asm/syscall.h
+++ b/arch/sparc/include/asm/syscall.h
@@ -128,8 +128,12 @@ static inline void syscall_set_arguments(struct task_struct *task,
 
 static inline int syscall_get_arch(void)
 {
+#if defined(__sparc__) && defined(__arch64__)
 	return test_thread_flag(TIF_32BIT) ? AUDIT_ARCH_SPARC
 					   : AUDIT_ARCH_SPARC64;
+#else
+	return AUDIT_ARCH_SPARC;
+#endif
 }
 
 #endif /* __ASM_SPARC_SYSCALL_H */
-- 
1.9.2

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

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

end of thread, other threads:[~2014-04-22 21:27 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-06  6:27 linux-next: build failure after merge of the audit tree Stephen Rothwell
2013-11-06 16:54 ` Eric Paris
2014-04-22  6:22 Stephen Rothwell
2014-04-22  6:22 ` Stephen Rothwell
2014-04-22 15:56 ` Richard Guy Briggs
2014-04-22 15:56   ` Richard Guy Briggs
2014-04-22 16:32 ` Eric Paris
2014-04-22 16:32   ` Eric Paris
2014-04-22 21:27   ` Stephen Rothwell
2014-04-22 21:27     ` Stephen Rothwell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.