linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Al Viro <viro@ZenIV.linux.org.uk>
To: kbuild test robot <lkp@intel.com>
Cc: kbuild-all@01.org, linux-fsdevel@vger.kernel.org
Subject: Re: [vfs:work.termios 6/10] arch/arm/mach-sa1100/assabet.c:550:60: error: 'DOMAIN_IO' undeclared; did you mean 'DOMAIN_BUS_IPI'?
Date: Mon, 10 Sep 2018 21:26:37 +0100	[thread overview]
Message-ID: <20180910202636.GM19965@ZenIV.linux.org.uk> (raw)
In-Reply-To: <201809110224.2hcw3kvk%fengguang.wu@intel.com>

On Tue, Sep 11, 2018 at 02:34:32AM +0800, kbuild test robot wrote:
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git work.termios
> head:   a3318f219be23141d4784902d201e4d8e8d6d0d2
> commit: b62802628ae228744508363e28118427904bc338 [6/10] untangle asm/termios.h mess
> config: arm-neponset_defconfig (attached as .config)
> compiler: arm-linux-gnueabi-gcc (Debian 7.2.0-11) 7.2.0
> reproduce:

Huh?

>    In file included from include/linux/const.h:4:0,
>                     from include/linux/list.h:8,
>                     from include/linux/module.h:9,
>                     from arch/arm/mach-sa1100/assabet.c:14:
>    arch/arm/mach-sa1100/assabet.c: In function 'map_sa1100_gpio_regs':
> >> arch/arm/mach-sa1100/assabet.c:550:60: error: 'DOMAIN_IO' undeclared (first use in this function); did you mean 'DOMAIN_BUS_IPI'?

What in hell does that thing have to do with asm/termios.h?  Especially
on arm, where the only visible change in that commit is that include of
asm/termios.h stopped pulling linux/uacess.h?

Oh, dear...  So we have this:

linux/serial_core.h ->
linux/tty.h ->
[uapi] linux/termios.h ->
[uapi] asm/termios.h -> (due to generic-y)
asm-generic/termios.h ->
linux/uaccess.h and [uapi] asm-generic/termios.h.

with linux/uaccess.h -> asm/uaccess.h -> asm/domain.h being what
used to bring DOMAIN_IO in.  And that change has eliminated the
side-trip into asm-generic/termios.h, replacing it with pulling
uapi asm-generic/termios.h.  With missing indirect include of
asm/domain.h as the result.

Note that *nothing* in linux/serial_core.h or the stuff pulled by
it has any need of linux/uaccess.h.  Wonderful, innit?

As it were, prior to that commit any pull of asm/termios.h (realistically -
linux/termios.h) used to imply the pull of linux/uaccess.h.  Sigh...
Let's see...  Includes of linux/termios.h:
arch/arm/mach-ep93xx/core.c:29:#include <linux/termios.h>
arch/arm/mach-integrator/integrator_ap.c:29:#include <linux/termios.h>
drivers/char/pcmcia/synclink_cs.c:68:#include <linux/termios.h>
drivers/misc/ibmasm/uart.c:25:#include <linux/termios.h>
drivers/net/slip/slhc.c:66:#include <linux/termios.h>
drivers/parisc/superio.c:73:#include <linux/termios.h>
drivers/s390/char/sclp_con.c:15:#include <linux/termios.h>
drivers/tty/isicom.c:119:#include <linux/termios.h>
drivers/tty/serial/icom.c:18:#include <linux/termios.h>
drivers/tty/serial/ifx6x60.c:28:#include <linux/termios.h>
drivers/tty/serial/serial-tegra.c:33:#include <linux/termios.h>
drivers/tty/serial/serial_mctrl_gpio.c:12:#include <linux/termios.h>
drivers/tty/synclink.c:93:#include <linux/termios.h>
drivers/tty/synclink_gt.c:69:#include <linux/termios.h>
drivers/tty/synclinkmp.c:66:#include <linux/termios.h>
drivers/tty/tty_baudrate.c:8:#include <linux/termios.h>
drivers/tty/tty_ioctl.c:11:#include <linux/termios.h>
include/linux/serdev.h:18:#include <linux/termios.h>
include/linux/tty.h:7:#include <linux/termios.h>
include/linux/tty_driver.h:246:#include <linux/termios.h>
net/appletalk/ddp.c:57:#include <linux/termios.h>       /* For TIOCOUTQ/INQ */
net/ax25/af_ax25.c:37:#include <linux/termios.h>        /* For TIOCINQ/OUTQ */
net/ax25/ax25_ip.c:28:#include <linux/termios.h>        /* For TIOCINQ/OUTQ */
net/decnet/dn_nsp_in.c:65:#include <linux/termios.h>
net/decnet/dn_nsp_out.c:56:#include <linux/termios.h>
net/ieee802154/socket.c:25:#include <linux/termios.h>   /* For TIOCOUTQ/INQ */
net/netlink/af_netlink.c:38:#include <linux/termios.h>
net/netrom/af_netrom.c:35:#include <linux/termios.h>    /* For TIOCINQ/OUTQ */
net/netrom/nr_route.c:30:#include <linux/termios.h>     /* For TIOCINQ/OUTQ */
net/qrtr/qrtr.c:17:#include <linux/termios.h>   /* For TIOCINQ/OUTQ */
net/rose/af_rose.c:39:#include <linux/termios.h>
net/rose/rose_route.c:30:#include <linux/termios.h>     /* For TIOCINQ/OUTQ */
net/unix/af_unix.c:97:#include <linux/termios.h>
net/x25/af_x25.c:56:#include <linux/termios.h>  /* For TIOCINQ/OUTQ */

Excluding the ones that have an explicit include of linux/uaccess.h and
net/sock.h (it pulls linux/uaccess.h unconditionally) we are left with

arch/arm/mach-ep93xx/core.c:29:#include <linux/termios.h>
arch/arm/mach-integrator/integrator_ap.c:29:#include <linux/termios.h>
drivers/misc/ibmasm/uart.c:25:#include <linux/termios.h>
drivers/parisc/superio.c:73:#include <linux/termios.h>
drivers/s390/char/sclp_con.c:15:#include <linux/termios.h>
drivers/tty/serial/ifx6x60.c:28:#include <linux/termios.h>
drivers/tty/serial/serial-tegra.c:33:#include <linux/termios.h>
drivers/tty/serial/serial_mctrl_gpio.c:12:#include <linux/termios.h>
drivers/tty/tty_baudrate.c:8:#include <linux/termios.h>
include/linux/serdev.h:18:#include <linux/termios.h>
include/linux/tty.h:7:#include <linux/termios.h>
include/linux/tty_driver.h:246:#include <linux/termios.h>

Hmm... serial_core.h pulls tty.h, which pulls tty_driver.h.  And excluding
those the pull either, we are left with

arch/arm/mach-ep93xx/core.c:29:#include <linux/termios.h>
arch/arm/mach-integrator/integrator_ap.c:29:#include <linux/termios.h>
drivers/s390/char/sclp_con.c:15:#include <linux/termios.h>
include/linux/serdev.h:18:#include <linux/termios.h>

sclp_con.c pulls tty_driver.h via sclp_tty.h, so the minimal solution would
be to shift the include of linux/uaccess.h into tty_driver.h, that pair
of arm files and serdev.h ;-/  Odds are, that's a serious overkill, but...

Sigh.  I really, really hate chain includes ;-/

      reply	other threads:[~2018-09-11  1:22 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-10 18:34 [vfs:work.termios 6/10] arch/arm/mach-sa1100/assabet.c:550:60: error: 'DOMAIN_IO' undeclared; did you mean 'DOMAIN_BUS_IPI'? kbuild test robot
2018-09-10 20:26 ` Al Viro [this message]

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=20180910202636.GM19965@ZenIV.linux.org.uk \
    --to=viro@zeniv.linux.org.uk \
    --cc=kbuild-all@01.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=lkp@intel.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).