All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Stafford Horne <shorne@gmail.com>
Cc: kbuild-all@01.org, Jonas Bonn <jonas@southpole.se>,
	Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>,
	Andrew Morton <akpm@linux-foundation.org>,
	linux-kernel@vger.kernel.org, Stafford Horne <shorne@gmail.com>
Subject: Re: [PATCH 1/7] Apply transparent_union attribute to union semun
Date: Fri, 16 Sep 2016 23:57:13 +0800	[thread overview]
Message-ID: <201609162346.2eaoXR0w%fengguang.wu@intel.com> (raw)
In-Reply-To: <1474036985-20981-2-git-send-email-shorne@gmail.com>

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

Hi Jonas,

[auto build test WARNING on linus/master]
[also build test WARNING on v4.8-rc6 next-20160916]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
[Suggest to use git(>=2.9.0) format-patch --base=<commit> (or --base=auto for convenience) to record what (public, well-known) commit your patch series was built on]
[Check https://git-scm.com/docs/git-format-patch for more information]

url:    https://github.com/0day-ci/linux/commits/Stafford-Horne/openrisc-Misc-fixes-from-backlog/20160916-230114
config: x86_64-randconfig-x011-09161116 (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All warnings (new ones prefixed by >>):

   In file included from include/linux/sem.h:7:0,
                    from include/linux/sched.h:35,
                    from include/linux/utsname.h:5,
                    from init/version.c:12:
>> include/uapi/linux/sem.h:45:7: warning: union cannot be made transparent
    union semun {
          ^~~~~
--
   In file included from include/linux/sem.h:7:0,
                    from include/linux/sched.h:35,
                    from include/linux/kasan.h:4,
                    from kernel/sched/core.c:29:
>> include/uapi/linux/sem.h:45:7: warning: union cannot be made transparent
    union semun {
          ^~~~~
   In file included from include/linux/perf_event.h:47:0,
                    from kernel/sched/core.c:42:
   include/linux/ftrace.h: In function 'preempt_schedule_common':
   include/linux/ftrace.h:703:36: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
    #  define ftrace_return_address(n) __builtin_return_address(n)
                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:710:38: note: in expansion of macro 'ftrace_return_address'
    #define CALLER_ADDR1 ((unsigned long)ftrace_return_address(1))
                                         ^~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:723:9: note: in expansion of macro 'CALLER_ADDR1'
     addr = CALLER_ADDR1;
            ^~~~~~~~~~~~
   include/linux/ftrace.h:703:36: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
    #  define ftrace_return_address(n) __builtin_return_address(n)
                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:711:38: note: in expansion of macro 'ftrace_return_address'
    #define CALLER_ADDR2 ((unsigned long)ftrace_return_address(2))
                                         ^~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:726:9: note: in expansion of macro 'CALLER_ADDR2'
     return CALLER_ADDR2;
            ^~~~~~~~~~~~
   include/linux/ftrace.h: In function 'preempt_count_add':
   include/linux/ftrace.h:703:36: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
    #  define ftrace_return_address(n) __builtin_return_address(n)
                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:710:38: note: in expansion of macro 'ftrace_return_address'
    #define CALLER_ADDR1 ((unsigned long)ftrace_return_address(1))
                                         ^~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:723:9: note: in expansion of macro 'CALLER_ADDR1'
     addr = CALLER_ADDR1;
            ^~~~~~~~~~~~
   include/linux/ftrace.h:703:36: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
    #  define ftrace_return_address(n) __builtin_return_address(n)
                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:711:38: note: in expansion of macro 'ftrace_return_address'
    #define CALLER_ADDR2 ((unsigned long)ftrace_return_address(2))
                                         ^~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:726:9: note: in expansion of macro 'CALLER_ADDR2'
     return CALLER_ADDR2;
            ^~~~~~~~~~~~
   include/linux/ftrace.h: In function 'preempt_schedule_notrace':
   include/linux/ftrace.h:703:36: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
    #  define ftrace_return_address(n) __builtin_return_address(n)
                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:710:38: note: in expansion of macro 'ftrace_return_address'
    #define CALLER_ADDR1 ((unsigned long)ftrace_return_address(1))
                                         ^~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:723:9: note: in expansion of macro 'CALLER_ADDR1'
     addr = CALLER_ADDR1;
            ^~~~~~~~~~~~
   include/linux/ftrace.h:703:36: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
    #  define ftrace_return_address(n) __builtin_return_address(n)
                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:711:38: note: in expansion of macro 'ftrace_return_address'
    #define CALLER_ADDR2 ((unsigned long)ftrace_return_address(2))
                                         ^~~~~~~~~~~~~~~~~~~~~
   include/linux/ftrace.h:726:9: note: in expansion of macro 'CALLER_ADDR2'
     return CALLER_ADDR2;
            ^~~~~~~~~~~~

vim +45 include/uapi/linux/sem.h

607ca46e David Howells 2012-10-13  29  	struct sem_queue **sem_pending_last;	/* last pending operation */
607ca46e David Howells 2012-10-13  30  	struct sem_undo	*undo;			/* undo requests on this array */
607ca46e David Howells 2012-10-13  31  	unsigned short	sem_nsems;		/* no. of semaphores in array */
607ca46e David Howells 2012-10-13  32  };
607ca46e David Howells 2012-10-13  33  
607ca46e David Howells 2012-10-13  34  /* Include the definition of semid64_ds */
607ca46e David Howells 2012-10-13  35  #include <asm/sembuf.h>
607ca46e David Howells 2012-10-13  36  
607ca46e David Howells 2012-10-13  37  /* semop system calls takes an array of these. */
607ca46e David Howells 2012-10-13  38  struct sembuf {
607ca46e David Howells 2012-10-13  39  	unsigned short  sem_num;	/* semaphore index in array */
607ca46e David Howells 2012-10-13  40  	short		sem_op;		/* semaphore operation */
607ca46e David Howells 2012-10-13  41  	short		sem_flg;	/* operation flags */
607ca46e David Howells 2012-10-13  42  };
607ca46e David Howells 2012-10-13  43  
607ca46e David Howells 2012-10-13  44  /* arg for semctl system calls. */
607ca46e David Howells 2012-10-13 @45  union semun {
607ca46e David Howells 2012-10-13  46  	int val;			/* value for SETVAL */
607ca46e David Howells 2012-10-13  47  	struct semid_ds __user *buf;	/* buffer for IPC_STAT & IPC_SET */
607ca46e David Howells 2012-10-13  48  	unsigned short __user *array;	/* array for GETALL & SETALL */
607ca46e David Howells 2012-10-13  49  	struct seminfo __user *__buf;	/* buffer for IPC_INFO */
607ca46e David Howells 2012-10-13  50  	void __user *__pad;
46f40460 Jonas Bonn    2016-09-16  51  } __attribute__ ((transparent_union));
607ca46e David Howells 2012-10-13  52  
607ca46e David Howells 2012-10-13  53  struct  seminfo {

:::::: The code at line 45 was first introduced by commit
:::::: 607ca46e97a1b6594b29647d98a32d545c24bdff UAPI: (Scripted) Disintegrate include/linux

:::::: TO: David Howells <dhowells@redhat.com>
:::::: CC: David Howells <dhowells@redhat.com>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 21020 bytes --]

  reply	other threads:[~2016-09-16 15:57 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-16 14:42 [PATCH 0/7] openrisc: Misc fixes from backlog Stafford Horne
2016-09-16 14:42 ` [PATCH 1/7] Apply transparent_union attribute to union semun Stafford Horne
2016-09-16 15:57   ` kbuild test robot [this message]
2016-09-16 23:37   ` kbuild test robot
2016-09-17  0:06     ` Stafford Horne
2016-09-17  0:06       ` [OpenRISC] " Stafford Horne
2016-09-19 14:26   ` Jonas Bonn
2016-09-19 14:47     ` Stafford Horne
2016-09-16 14:43 ` [PATCH 2/7] openrisc: fix PTRS_PER_PGD define Stafford Horne
2016-09-19 14:27   ` Jonas Bonn
2016-09-16 14:43 ` [PATCH 3/7] openrisc: restore call-saved regs on sigreturn Stafford Horne
2016-09-19 14:28   ` Jonas Bonn
2016-09-19 14:50     ` Stafford Horne
2016-09-27 13:54       ` Stafford Horne
2016-09-16 14:43 ` [PATCH 4/7] openrisc: Add thread-local storage (TLS) support Stafford Horne
2016-09-19 14:25   ` Jonas Bonn
2016-09-19 14:43     ` Stafford Horne
2016-09-16 14:43 ` [PATCH 5/7] openrisc: Support both old (or32) and new (or1k) toolchain Stafford Horne
2016-09-18 15:26   ` Guenter Roeck
2016-09-19  6:02     ` Stafford Horne
2016-09-19  7:18       ` Guenter Roeck
2016-09-19  9:11         ` Stafford Horne
2016-09-19  9:11           ` [OpenRISC] " Stafford Horne
2016-09-19 13:17           ` Guenter Roeck
2016-09-19 13:17             ` [OpenRISC] " Guenter Roeck
2016-09-19 14:04             ` Stafford Horne
2016-09-19 14:04               ` [OpenRISC] " Stafford Horne
2016-09-19 14:35               ` Jonas Bonn
2016-09-19 14:35                 ` [OpenRISC] " Jonas Bonn
2016-09-19 14:55                 ` Guenter Roeck
2016-09-19 14:55                   ` [OpenRISC] " Guenter Roeck
2016-09-19 14:58                 ` Stefan Wallentowitz
2016-09-19 15:36                   ` Jeremy Bennett
2016-09-19 16:09                     ` Stafford Horne
2016-09-19 16:27                       ` Jeremy Bennett
2016-09-19 17:15                         ` Stefan Wallentowitz
2016-09-19 17:49                           ` Jeremy Bennett
2016-09-19 14:59                 ` Stefan Wallentowitz
2016-09-19 15:16                 ` Stafford Horne
2016-09-19 15:16                   ` [OpenRISC] " Stafford Horne
2016-09-19 14:39               ` Guenter Roeck
2016-09-19 14:39                 ` [OpenRISC] " Guenter Roeck
2016-09-20 10:01                 ` Stafford Horne
2016-09-20 10:01                   ` [OpenRISC] " Stafford Horne
2016-09-16 14:43 ` [PATCH 6/7] openrisc: add SMP and NR_CPUS Kconfig options Stafford Horne
2016-09-19 14:31   ` Jonas Bonn
2016-09-19 14:54     ` Stafford Horne
2016-09-16 14:43 ` [PATCH 7/7] openrisc: remove the redundant of_platform_populate Stafford Horne
2016-09-19 14:32   ` Jonas Bonn
2016-09-19 14:58     ` Stafford Horne
2016-09-19 16:14     ` Rob Herring
2016-09-16 14:51 ` [PATCH 0/7] openrisc: Misc fixes from backlog Stafford Horne
2016-09-16 14:51   ` [OpenRISC] " Stafford Horne

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201609162346.2eaoXR0w%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=jonas@southpole.se \
    --cc=kbuild-all@01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=shorne@gmail.com \
    --cc=stefan.kristiansson@saunalahti.fi \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.