From: Brendan Higgins <brendanhiggins@google.com> To: jdike@addtoit.com, richard@nod.at, anton.ivanov@cambridgegreys.com, "David S. Miller" <davem@davemloft.net>, Alistar Popple <alistair@popple.id.au>, Andrew Jeffery <andrew@aj.id.au>, Antoine Tenart <antoine.tenart@bootlin.com>, Arnd Bergmann <arnd@arndb.de>, Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>, Boris Brezillon <bbrezillon@kernel.org>, Corentin Labbe <clabbe@baylibre.com>, Eddie James <eajames@linux.ibm.com>, Greg Kroah-Hartman <gregkh@linuxfoundation.org>, Herbert Xu <herbert@gondor.apana.org.au>, Jeremy Kerr <jk@ozlabs.org>, Joel Stanley <joel@jms.id.au>, Linus Walleij <linus.walleij@linaro.org>, Michal Simek <michal.simek@xilinx.com>, Miquel Raynal <miquel.raynal@bootlin.com>, Moses Christopher <moseschristopherb@gmail.com>, Piotr Sroka <piotrs@cadence.com>, Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>, Vignesh Raghavendra <vigneshr@ti.com> Cc: linux-um@lists.infradead.org, linux-kernel@vger.kernel.org, davidgow@google.com, Brendan Higgins <brendanhiggins@google.com>, devel@driverdev.osuosl.org, linux-amlogic@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-aspeed@lists.ozlabs.org, linux-crypto@vger.kernel.org, linux-fsi@lists.ozlabs.org, linux-gpio@vger.kernel.org, linux-mtd@lists.infradead.org, netdev@vger.kernel.org Subject: [PATCH v1 0/7] uml: add unspecified HAS_IOMEM dependencies Date: Wed, 11 Dec 2019 11:27:35 -0800 Message-ID: <20191211192742.95699-1-brendanhiggins@google.com> (raw) # TL;DR This patchset adds a missing HAS_IOMEM dependency to several drivers in an attempt to get allyesconfig closer to working for ARCH=um. # What am I trying to do? This patchset is part of my attempt to get `make ARCH=um allyesconfig` to produce a config that will build *and* boot to init, so that I can use it as a mechanism to run tests[1]. This patchset is attempting to deal with CONFIG_PINCTRL_EQUILIBRIUM=y CONFIG_MTD_NAND_CADENCE=y CONFIG_FSI_MASTER_ASPEED=y CONFIG_CRYPTO_DEV_SAFEXCEL=y CONFIG_XIL_AXIS_FIFO=y CONFIG_CRYPTO_DEV_AMLOGIC_GXL=y CONFIG_XILINX_AXI_EMAC=y which are selected by `make ARCH=um allyesconfig`, but prevent it from building. # How far away are we from an allyesconfig UML kernel? I have identified 33 Kconfigs that are selected by allyesconfig, but will either not build on UML, or prevent it from booting. They are: CONFIG_STATIC_LINK=y CONFIG_UML_NET_PCAP=y CONFIG_NET_PTP_CLASSIFY=y CONFIG_IP_VS=y CONFIG_BRIDGE_EBT_BROUTE=y CONFIG_BRIDGE_EBT_T_FILTER=y CONFIG_BRIDGE_EBT_T_NAT=y CONFIG_MTD_NAND_CADENCE=y CONFIG_MTD_NAND_NANDSIM=y CONFIG_BLK_DEV_NULL_BLK=y CONFIG_BLK_DEV_RAM=y CONFIG_SCSI_DEBUG=y CONFIG_NET_VENDOR_XILINX=y CONFIG_NULL_TTY=y CONFIG_PTP_1588_CLOCK=y CONFIG_PINCTRL_EQUILIBRIUM=y CONFIG_DMABUF_SELFTESTS=y CONFIG_COMEDI=y CONFIG_XIL_AXIS_FIFO=y CONFIG_EXFAT_FS=y CONFIG_STM_DUMMY=y CONFIG_FSI_MASTER_ASPEED=y CONFIG_JFS_FS=y CONFIG_UBIFS_FS=y CONFIG_CRAMFS=y CONFIG_CRYPTO_DEV_SAFEXCEL=y CONFIG_CRYPTO_DEV_AMLOGIC_GXL=y CONFIG_KCOV=y CONFIG_LKDTM=y CONFIG_REED_SOLOMON_TEST=y CONFIG_TEST_RHASHTABLE=y CONFIG_TEST_MEMINIT=y CONFIG_NETWORK_PHY_TIMESTAMPING=y CONFIG_STATIC_LINK=y and CONFIG_UML_NET_PCAP=y already have fixes on their way. I also have a patchset that just got accepted to fix CONFIG_EXFAT_FS=y[2]. So with this patchset and these other three fixes mentioned here, we will be about a third of the way there. There is only one more broken config that prevents UML from building, CONFIG_LKDTM=y. After this there will still be 22 broken configs which will prevent the UML allyesconfig kernel from reaching the end of init; nevertheless, this is a good milestone where, once reached, we can stop some of this bleeding by adding a build test. # Why won't allyesconfig break again after this series of fixes? As I mentioned above, I am using UML for testing the kernel, and I am currently working on getting my tests to run on KernelCI. As part of our testing procedure for KernelCI, we are planning on building a UML kernel using allyesconfig and running our tests on it. Thus, we will find out very quickly once someone breaks allyesconfig again once we get this all working. Brendan Higgins (7): pinctrl: equilibrium: add unspecified HAS_IOMEM dependency mtd: rawnand: add unspecified HAS_IOMEM dependency net: axienet: add unspecified HAS_IOMEM dependency crypto: inside-secure: add unspecified HAS_IOMEM dependency crypto: amlogic: add unspecified HAS_IOMEM dependency staging: axis-fifo: add unspecified HAS_IOMEM dependency fsi: aspeed: add unspecified HAS_IOMEM dependency drivers/crypto/Kconfig | 2 +- drivers/crypto/amlogic/Kconfig | 1 + drivers/fsi/Kconfig | 1 + drivers/mtd/nand/raw/Kconfig | 2 +- drivers/net/ethernet/xilinx/Kconfig | 1 + drivers/pinctrl/Kconfig | 1 + drivers/staging/axis-fifo/Kconfig | 2 +- 7 files changed, 7 insertions(+), 3 deletions(-) [1] https://bugzilla.kernel.org/show_bug.cgi?id=205223 [2] https://patchwork.kernel.org/patch/11273771/ -- 2.24.0.525.g8f36a354ae-goog
next reply index Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-12-11 19:27 Brendan Higgins [this message] 2019-12-11 19:27 ` [PATCH v1 1/7] pinctrl: equilibrium: add unspecified HAS_IOMEM dependency Brendan Higgins 2019-12-16 8:42 ` Linus Walleij 2019-12-16 9:31 ` Arnd Bergmann 2019-12-16 10:39 ` Linus Walleij 2020-01-23 22:15 ` Brendan Higgins 2019-12-11 19:27 ` [PATCH v1 2/7] mtd: rawnand: " Brendan Higgins 2020-01-09 15:23 ` Miquel Raynal 2020-01-25 2:12 ` Brendan Higgins 2020-01-25 15:28 ` Miquel Raynal 2020-01-27 19:00 ` Brendan Higgins 2020-01-30 19:50 ` Miquel Raynal 2020-01-30 19:55 ` Brendan Higgins 2019-12-11 19:27 ` [PATCH v1 3/7] net: axienet: " Brendan Higgins 2019-12-12 5:45 ` Radhey Shyam Pandey 2019-12-11 19:27 ` [PATCH v1 4/7] crypto: inside-secure: " Brendan Higgins 2019-12-20 7:07 ` Herbert Xu 2019-12-11 19:27 ` [PATCH v1 5/7] crypto: amlogic: " Brendan Higgins 2019-12-12 19:36 ` LABBE Corentin 2019-12-20 7:07 ` Herbert Xu 2019-12-11 19:27 ` [PATCH v1 6/7] staging: axis-fifo: " Brendan Higgins 2019-12-14 11:28 ` Greg Kroah-Hartman 2020-01-23 22:16 ` Brendan Higgins 2019-12-11 19:27 ` [PATCH v1 7/7] fsi: aspeed: " Brendan Higgins 2019-12-12 0:12 ` Joel Stanley 2019-12-12 0:30 ` Brendan Higgins 2019-12-16 6:01 ` Joel Stanley 2020-01-27 9:46 ` Brendan Higgins 2020-01-31 3:43 ` Joel Stanley
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=20191211192742.95699-1-brendanhiggins@google.com \ --to=brendanhiggins@google.com \ --cc=alistair@popple.id.au \ --cc=andrew@aj.id.au \ --cc=antoine.tenart@bootlin.com \ --cc=anton.ivanov@cambridgegreys.com \ --cc=arnd@arndb.de \ --cc=b.zolnierkie@samsung.com \ --cc=bbrezillon@kernel.org \ --cc=clabbe@baylibre.com \ --cc=davem@davemloft.net \ --cc=davidgow@google.com \ --cc=devel@driverdev.osuosl.org \ --cc=eajames@linux.ibm.com \ --cc=gregkh@linuxfoundation.org \ --cc=herbert@gondor.apana.org.au \ --cc=jdike@addtoit.com \ --cc=jk@ozlabs.org \ --cc=joel@jms.id.au \ --cc=linus.walleij@linaro.org \ --cc=linux-amlogic@lists.infradead.org \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-aspeed@lists.ozlabs.org \ --cc=linux-crypto@vger.kernel.org \ --cc=linux-fsi@lists.ozlabs.org \ --cc=linux-gpio@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-mtd@lists.infradead.org \ --cc=linux-um@lists.infradead.org \ --cc=michal.simek@xilinx.com \ --cc=miquel.raynal@bootlin.com \ --cc=moseschristopherb@gmail.com \ --cc=netdev@vger.kernel.org \ --cc=piotrs@cadence.com \ --cc=radhey.shyam.pandey@xilinx.com \ --cc=richard@nod.at \ --cc=vigneshr@ti.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
LKML Archive on lore.kernel.org Archives are clonable: git clone --mirror https://lore.kernel.org/lkml/0 lkml/git/0.git git clone --mirror https://lore.kernel.org/lkml/1 lkml/git/1.git git clone --mirror https://lore.kernel.org/lkml/2 lkml/git/2.git git clone --mirror https://lore.kernel.org/lkml/3 lkml/git/3.git git clone --mirror https://lore.kernel.org/lkml/4 lkml/git/4.git git clone --mirror https://lore.kernel.org/lkml/5 lkml/git/5.git git clone --mirror https://lore.kernel.org/lkml/6 lkml/git/6.git git clone --mirror https://lore.kernel.org/lkml/7 lkml/git/7.git git clone --mirror https://lore.kernel.org/lkml/8 lkml/git/8.git git clone --mirror https://lore.kernel.org/lkml/9 lkml/git/9.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 lkml lkml/ https://lore.kernel.org/lkml \ linux-kernel@vger.kernel.org public-inbox-index lkml Example config snippet for mirrors Newsgroup available over NNTP: nntp://nntp.lore.kernel.org/org.kernel.vger.linux-kernel AGPL code for this site: git clone https://public-inbox.org/public-inbox.git