# git rev-parse -q --verify 3a8a670eeeaa40d87bd38a587438952741980c18^{commit} 3a8a670eeeaa40d87bd38a587438952741980c18 already have revision, skipping fetch # git checkout -q -f -B kisskb 3a8a670eeeaa40d87bd38a587438952741980c18 # git clean -qxdf # < git log -1 # commit 3a8a670eeeaa40d87bd38a587438952741980c18 # Merge: 6a8cbd9253ab ae230642190a # Author: Linus Torvalds # Date: Wed Jun 28 16:43:10 2023 -0700 # # Merge tag 'net-next-6.5' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next # # Pull networking changes from Jakub Kicinski: # "WiFi 7 and sendpage changes are the biggest pieces of work for this # release. The latter will definitely require fixes but I think that we # got it to a reasonable point. # # Core: # # - Rework the sendpage & splice implementations # # Instead of feeding data into sockets page by page extend sendmsg # handlers to support taking a reference on the data, controlled by a # new flag called MSG_SPLICE_PAGES # # Rework the handling of unexpected-end-of-file to invoke an # additional callback instead of trying to predict what the right # combination of MORE/NOTLAST flags is # # Remove the MSG_SENDPAGE_NOTLAST flag completely # # - Implement SCM_PIDFD, a new type of CMSG type analogous to # SCM_CREDENTIALS, but it contains pidfd instead of plain pid # # - Enable socket busy polling with CONFIG_RT # # - Improve reliability and efficiency of reporting for ref_tracker # # - Auto-generate a user space C library for various Netlink families # # Protocols: # # - Allow TCP to shrink the advertised window when necessary, prevent # sk_rcvbuf auto-tuning from growing the window all the way up to # tcp_rmem[2] # # - Use per-VMA locking for "page-flipping" TCP receive zerocopy # # - Prepare TCP for device-to-device data transfers, by making sure # that payloads are always attached to skbs as page frags # # - Make the backoff time for the first N TCP SYN retransmissions # linear. Exponential backoff is unnecessarily conservative # # - Create a new MPTCP getsockopt to retrieve all info # (MPTCP_FULL_INFO) # # - Avoid waking up applications using TLS sockets until we have a full # record # # - Allow using kernel memory for protocol ioctl callbacks, paving the # way to issuing ioctls over io_uring # # - Add nolocalbypass option to VxLAN, forcing packets to be fully # encapsulated even if they are destined for a local IP address # # - Make TCPv4 use consistent hash in TIME_WAIT and SYN_RECV. Ensure # in-kernel ECMP implementation (e.g. Open vSwitch) select the same # link for all packets. Support L4 symmetric hashing in Open vSwitch # # - PPPoE: make number of hash bits configurable # # - Allow DNS to be overwritten by DHCPACK in the in-kernel DHCP client # (ipconfig) # # - Add layer 2 miss indication and filtering, allowing higher layers # (e.g. ACL filters) to make forwarding decisions based on whether # packet matched forwarding state in lower devices (bridge) # # - Support matching on Connectivity Fault Management (CFM) packets # # - Hide the "link becomes ready" IPv6 messages by demoting their # printk level to debug # # - HSR: don't enable promiscuous mode if device offloads the proto # # - Support active scanning in IEEE 802.15.4 # # - Continue work on Multi-Link Operation for WiFi 7 # # BPF: # # - Add precision propagation for subprogs and callbacks. This allows # maintaining verification efficiency when subprograms are used, or # in fact passing the verifier at all for complex programs, # especially those using open-coded iterators # # - Improve BPF's {g,s}setsockopt() length handling. Previously BPF # assumed the length is always equal to the amount of written data. # But some protos allow passing a NULL buffer to discover what the # output buffer *should* be, without writing anything # # - Accept dynptr memory as memory arguments passed to helpers # # - Add routing table ID to bpf_fib_lookup BPF helper # # - Support O_PATH FDs in BPF_OBJ_PIN and BPF_OBJ_GET commands # # - Drop bpf_capable() check in BPF_MAP_FREEZE command (used to mark # maps as read-only) # # - Show target_{obj,btf}_id in tracing link fdinfo # # - Addition of several new kfuncs (most of the names are # self-explanatory): # - Add a set of new dynptr kfuncs: bpf_dynptr_adjust(), # bpf_dynptr_is_null(), bpf_dynptr_is_rdonly(), bpf_dynptr_size() # and bpf_dynptr_clone(). # - bpf_task_under_cgroup() # - bpf_sock_destroy() - force closing sockets # - bpf_cpumask_first_and(), rework bpf_cpumask_any*() kfuncs # # Netfilter: # # - Relax set/map validation checks in nf_tables. Allow checking # presence of an entry in a map without using the value # # - Increase ip_vs_conn_tab_bits range for 64BIT builds # # - Allow updating size of a set # # - Improve NAT tuple selection when connection is closing # # Driver API: # # - Integrate netdev with LED subsystem, to allow configuring HW # "offloaded" blinking of LEDs based on link state and activity # (i.e. packets coming in and out) # # - Support configuring rate selection pins of SFP modules # # - Factor Clause 73 auto-negotiation code out of the drivers, provide # common helper routines # # - Add more fool-proof helpers for managing lifetime of MDIO devices # associated with the PCS layer # # - Allow drivers to report advanced statistics related to Time Aware # scheduler offload (taprio) # # - Allow opting out of VF statistics in link dump, to allow more VFs # to fit into the message # # - Split devlink instance and devlink port operations # # New hardware / drivers: # # - Ethernet: # - Synopsys EMAC4 IP support (stmmac) # - Marvell 88E6361 8 port (5x1GE + 3x2.5GE) switches # - Marvell 88E6250 7 port switches # - Microchip LAN8650/1 Rev.B0 PHYs # - MediaTek MT7981/MT7988 built-in 1GE PHY driver # # - WiFi: # - Realtek RTL8192FU, 2.4 GHz, b/g/n mode, 2T2R, 300 Mbps # - Realtek RTL8723DS (SDIO variant) # - Realtek RTL8851BE # # - CAN: # - Fintek F81604 # # Drivers: # # - Ethernet NICs: # - Intel (100G, ice): # - support dynamic interrupt allocation # - use meta data match instead of VF MAC addr on slow-path # - nVidia/Mellanox: # - extend link aggregation to handle 4, rather than just 2 ports # - spawn sub-functions without any features by default # - OcteonTX2: # - support HTB (Tx scheduling/QoS) offload # - make RSS hash generation configurable # - support selecting Rx queue using TC filters # - Wangxun (ngbe/txgbe): # - add basic Tx/Rx packet offloads # - add phylink support (SFP/PCS control) # - Freescale/NXP (enetc): # - report TAPRIO packet statistics # - Solarflare/AMD: # - support matching on IP ToS and UDP source port of outer # header # - VxLAN and GENEVE tunnel encapsulation over IPv4 or IPv6 # - add devlink dev info support for EF10 # # - Virtual NICs: # - Microsoft vNIC: # - size the Rx indirection table based on requested # configuration # - support VLAN tagging # - Amazon vNIC: # - try to reuse Rx buffers if not fully consumed, useful for ARM # servers running with 16kB pages # - Google vNIC: # - support TCP segmentation of >64kB frames # # - Ethernet embedded switches: # - Marvell (mv88e6xxx): # - enable USXGMII (88E6191X) # - Microchip: # - lan966x: add support for Egress Stage 0 ACL engine # - lan966x: support mapping packet priority to internal switch # priority (based on PCP or DSCP) # # - Ethernet PHYs: # - Broadcom PHYs: # - support for Wake-on-LAN for BCM54210E/B50212E # - report LPI counter # - Microsemi PHYs: support RGMII delay configuration (VSC85xx) # - Micrel PHYs: receive timestamp in the frame (LAN8841) # - Realtek PHYs: support optional external PHY clock # - Altera TSE PCS: merge the driver into Lynx PCS which it is a # variant of # # - CAN: Kvaser PCIEcan: # - support packet timestamping # # - WiFi: # - Intel (iwlwifi): # - major update for new firmware and Multi-Link Operation (MLO) # - configuration rework to drop test devices and split the # different families # - support for segmented PNVM images and power tables # - new vendor entries for PPAG (platform antenna gain) feature # - Qualcomm 802.11ax (ath11k): # - Multiple Basic Service Set Identifier (MBSSID) and Enhanced # MBSSID Advertisement (EMA) support in AP mode # - support factory test mode # - RealTek (rtw89): # - add RSSI based antenna diversity # - support U-NII-4 channels on 5 GHz band # - RealTek (rtl8xxxu): # - AP mode support for 8188f # - support USB RX aggregation for the newer chips" # # * tag 'net-next-6.5' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (1602 commits) # net: scm: introduce and use scm_recv_unix helper # af_unix: Skip SCM_PIDFD if scm->pid is NULL. # net: lan743x: Simplify comparison # netlink: Add __sock_i_ino() for __netlink_diag_dump(). # net: dsa: avoid suspicious RCU usage for synced VLAN-aware MAC addresses # Revert "af_unix: Call scm_recv() only after scm_set_cred()." # phylink: ReST-ify the phylink_pcs_neg_mode() kdoc # libceph: Partially revert changes to support MSG_SPLICE_PAGES # net: phy: mscc: fix packet loss due to RGMII delays # net: mana: use vmalloc_array and vcalloc # net: enetc: use vmalloc_array and vcalloc # ionic: use vmalloc_array and vcalloc # pds_core: use vmalloc_array and vcalloc # gve: use vmalloc_array and vcalloc # octeon_ep: use vmalloc_array and vcalloc # net: usb: qmi_wwan: add u-blox 0x1312 composition # perf trace: fix MSG_SPLICE_PAGES build error # ipvlan: Fix return value of ipvlan_queue_xmit() # netfilter: nf_tables: fix underflow in chain reference counter # netfilter: nf_tables: unbind non-anonymous set if rule construction fails # ... # < /opt/cross/kisskb/korg/gcc-12.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux-gcc --version # < /opt/cross/kisskb/korg/gcc-12.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux-ld --version # < git log --format=%s --max-count=1 3a8a670eeeaa40d87bd38a587438952741980c18 # make -s -j 160 ARCH=powerpc O=/kisskb/build/linus_ppc64_book3e_allmodconfig_powerpc-gcc12 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-12.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux- ppc64_book3e_allmodconfig # Added to kconfig CONFIG_GCC_PLUGINS=n # Added to kconfig # < make -s -j 160 ARCH=powerpc O=/kisskb/build/linus_ppc64_book3e_allmodconfig_powerpc-gcc12 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-12.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux- help # make -s -j 160 ARCH=powerpc O=/kisskb/build/linus_ppc64_book3e_allmodconfig_powerpc-gcc12 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-12.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux- olddefconfig # make -s -j 160 ARCH=powerpc O=/kisskb/build/linus_ppc64_book3e_allmodconfig_powerpc-gcc12 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-12.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux- /kisskb/src/arch/powerpc/boot/dts/mpc5121.dtsi:397.13-406.5: Warning (spi_bus_bridge): /soc@80000000/psc@11400: node name for SPI buses should be 'spi' also defined at /kisskb/src/arch/powerpc/boot/dts/ac14xx.dts:305.19-326.5 /kisskb/src/arch/powerpc/boot/dts/mpc5121.dtsi:409.13-418.5: Warning (spi_bus_bridge): /soc@80000000/psc@11500: node name for SPI buses should be 'spi' also defined at /kisskb/src/arch/powerpc/boot/dts/ac14xx.dts:329.19-344.5 arch/powerpc/boot/dts/ac14xx.dtb: Warning (spi_bus_reg): Failed prerequisite 'spi_bus_bridge' /kisskb/src/arch/powerpc/boot/dts/bluestone.dts:272.13-277.7: Warning (i2c_bus_reg): /plb/opb/i2c@ef600700/sttm@4C: I2C bus unit address format error, expected "4c" /kisskb/src/arch/powerpc/boot/dts/fsl/gef_ppc9a.dts:211.22-213.4: Warning (pci_bridge): /pcie@fef09000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8641si-post.dtsi:119.7-144.3 /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8641si-post.dtsi:129.9-143.4: Warning (pci_bridge): /pcie@fef09000/pcie@0: missing ranges for PCI bridge (or not a bridge) arch/powerpc/boot/dts/fsl/gef_ppc9a.dtb: Warning (unit_address_format): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/gef_ppc9a.dtb: Warning (pci_device_reg): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/gef_ppc9a.dtb: Warning (pci_device_bus_num): Failed prerequisite 'pci_bridge' /kisskb/src/arch/powerpc/boot/dts/fsl/gef_sbc610.dts:209.22-211.4: Warning (pci_bridge): /pcie@fef09000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8641si-post.dtsi:119.7-144.3 /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8641si-post.dtsi:129.9-143.4: Warning (pci_bridge): /pcie@fef09000/pcie@0: missing ranges for PCI bridge (or not a bridge) arch/powerpc/boot/dts/fsl/gef_sbc610.dtb: Warning (unit_address_format): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/gef_sbc610.dtb: Warning (pci_device_reg): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/gef_sbc610.dtb: Warning (pci_device_bus_num): Failed prerequisite 'pci_bridge' /kisskb/src/arch/powerpc/boot/dts/fsl/kmcoge4.dts:196.23-198.4: Warning (pci_bridge): /pcie@ffe201000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/p2041si-post.dtsi:87.7-113.3 /kisskb/src/arch/powerpc/boot/dts/fsl/p2041si-post.dtsi:97.9-112.4: Warning (pci_bridge): /pcie@ffe201000/pcie@0: missing ranges for PCI bridge (or not a bridge) arch/powerpc/boot/dts/fsl/kmcoge4.dtb: Warning (unit_address_format): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/kmcoge4.dtb: Warning (pci_device_reg): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/kmcoge4.dtb: Warning (pci_device_bus_num): Failed prerequisite 'pci_bridge' /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8541cds.dts:341.15-350.5: Warning (pci_device_reg): /pci@e0008000/i8259@19000: PCI unit address format error, expected "12,0" /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8541cds.dts:330.3-21: Warning (pci_device_bus_num): /pci@e0008000/i8259@19000:bus-range: PCI bus number 1 out of range, expected (0 - 0) /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8555cds.dts:341.15-350.5: Warning (pci_device_reg): /pci@e0008000/i8259@19000: PCI unit address format error, expected "12,0" /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8555cds.dts:330.3-21: Warning (pci_device_bus_num): /pci@e0008000/i8259@19000:bus-range: PCI bus number 1 out of range, expected (0 - 0) /kisskb/src/arch/powerpc/boot/dts/fsl/mvme7100.dts:135.22-137.4: Warning (pci_bridge): /pcie@f1008000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8641si-post.dtsi:92.7-117.3 /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8641si-post.dtsi:102.9-116.4: Warning (pci_bridge): /pcie@f1008000/pcie@0: missing ranges for PCI bridge (or not a bridge) /kisskb/src/arch/powerpc/boot/dts/fsl/mvme7100.dts:139.22-141.4: Warning (pci_bridge): /pcie@f1009000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8641si-post.dtsi:119.7-144.3 /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8641si-post.dtsi:129.9-143.4: Warning (pci_bridge): /pcie@f1009000/pcie@0: missing ranges for PCI bridge (or not a bridge) arch/powerpc/boot/dts/fsl/mvme7100.dtb: Warning (unit_address_format): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/mvme7100.dtb: Warning (pci_device_reg): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/mvme7100.dtb: Warning (pci_device_bus_num): Failed prerequisite 'pci_bridge' /kisskb/src/arch/powerpc/boot/dts/fsl/mvme7100.dts:30.11-32.6: Warning (i2c_bus_reg): /soc@f1000000/i2c@3000/rtc@68: missing or empty reg property /kisskb/src/arch/powerpc/boot/dts/fsl/oca4080.dts:132.23-134.4: Warning (pci_bridge): /pcie@ffe200000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/p4080si-post.dtsi:58.7-84.3 /kisskb/src/arch/powerpc/boot/dts/fsl/p4080si-post.dtsi:68.9-83.4: Warning (pci_bridge): /pcie@ffe200000/pcie@0: missing ranges for PCI bridge (or not a bridge) /kisskb/src/arch/powerpc/boot/dts/fsl/oca4080.dts:136.23-138.4: Warning (pci_bridge): /pcie@ffe201000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/p4080si-post.dtsi:87.7-113.3 /kisskb/src/arch/powerpc/boot/dts/fsl/p4080si-post.dtsi:97.9-112.4: Warning (pci_bridge): /pcie@ffe201000/pcie@0: missing ranges for PCI bridge (or not a bridge) /kisskb/src/arch/powerpc/boot/dts/fsl/oca4080.dts:140.23-142.4: Warning (pci_bridge): /pcie@ffe202000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/p4080si-post.dtsi:116.7-142.3 /kisskb/src/arch/powerpc/boot/dts/fsl/p4080si-post.dtsi:126.9-141.4: Warning (pci_bridge): /pcie@ffe202000/pcie@0: missing ranges for PCI bridge (or not a bridge) arch/powerpc/boot/dts/fsl/oca4080.dtb: Warning (unit_address_format): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/oca4080.dtb: Warning (pci_device_reg): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/oca4080.dtb: Warning (pci_device_bus_num): Failed prerequisite 'pci_bridge' /kisskb/src/arch/powerpc/boot/dts/fsl/p1020rdb-pd.dts:189.11-193.6: Warning (spi_bus_reg): /soc@ffe00000/spi@7000/slic@0: SPI bus unit address format error, expected "1" /kisskb/src/arch/powerpc/boot/dts/fsl/p1020rdb-pd.dts:195.11-199.6: Warning (spi_bus_reg): /soc@ffe00000/spi@7000/slic@1: SPI bus unit address format error, expected "2" /kisskb/src/arch/powerpc/boot/dts/fsl/pq3-mpic.dtsi:38.2-25: Warning (interrupts_property): /soc@ffe00000/mdio@24000/ethernet-phy@0:#interrupt-cells: size is (8), expected multiple of 16 /kisskb/src/arch/powerpc/boot/dts/fsl/pq3-mpic.dtsi:38.2-25: Warning (interrupts_property): /soc@ffe00000/mdio@24000/ethernet-phy@1:#interrupt-cells: size is (8), expected multiple of 16 /kisskb/src/arch/powerpc/boot/dts/fsl/pq3-mpic.dtsi:38.2-25: Warning (interrupts_property): /soc@fffe00000/mdio@24000/ethernet-phy@0:#interrupt-cells: size is (8), expected multiple of 16 /kisskb/src/arch/powerpc/boot/dts/fsl/pq3-mpic.dtsi:38.2-25: Warning (interrupts_property): /soc@fffe00000/mdio@24000/ethernet-phy@1:#interrupt-cells: size is (8), expected multiple of 16 /kisskb/src/arch/powerpc/boot/dts/mpc5121.dtsi:457.13-466.5: Warning (spi_bus_bridge): /soc@80000000/psc@11900: node name for SPI buses should be 'spi' also defined at /kisskb/src/arch/powerpc/boot/dts/pdm360ng.dts:172.13-185.5 arch/powerpc/boot/dts/pdm360ng.dtb: Warning (spi_bus_reg): Failed prerequisite 'spi_bus_bridge' /kisskb/src/arch/powerpc/boot/dts/fsl/pq3-mpic.dtsi:38.2-25: Warning (interrupts_property): /soc@ffe00000/mdio@24000/ethernet-phy@0:#interrupt-cells: size is (8), expected multiple of 16 /kisskb/src/arch/powerpc/boot/dts/fsl/pq3-mpic.dtsi:38.2-25: Warning (interrupts_property): /soc@ffe00000/mdio@24000/ethernet-phy@1:#interrupt-cells: size is (8), expected multiple of 16 /kisskb/src/arch/powerpc/boot/dts/fsl/pq3-mpic.dtsi:38.2-25: Warning (interrupts_property): /soc@fffe00000/mdio@24000/ethernet-phy@0:#interrupt-cells: size is (8), expected multiple of 16 /kisskb/src/arch/powerpc/boot/dts/fsl/pq3-mpic.dtsi:38.2-25: Warning (interrupts_property): /soc@fffe00000/mdio@24000/ethernet-phy@1:#interrupt-cells: size is (8), expected multiple of 16 /kisskb/src/arch/powerpc/boot/dts/stxssa8555.dts:342.15-351.5: Warning (pci_device_reg): /pci@e0008000/i8259@19000: PCI unit address format error, expected "12,0" /kisskb/src/arch/powerpc/boot/dts/stxssa8555.dts:331.3-21: Warning (pci_device_bus_num): /pci@e0008000/i8259@19000:bus-range: PCI bus number 1 out of range, expected (0 - 0) /kisskb/src/arch/powerpc/boot/dts/fsl/p2020rdb-pc_32b.dts:59.22-62.4: Warning (pci_bridge): /pcie@ffe08000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/p2020si-post.dtsi:102.7-129.3 /kisskb/src/arch/powerpc/boot/dts/fsl/p2020si-post.dtsi:112.9-128.4: Warning (pci_bridge): /pcie@ffe08000/pcie@0: missing ranges for PCI bridge (or not a bridge) arch/powerpc/boot/dts/fsl/p2020rdb-pc_32b.dtb: Warning (unit_address_format): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/p2020rdb-pc_32b.dtb: Warning (pci_device_reg): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/p2020rdb-pc_32b.dtb: Warning (pci_device_bus_num): Failed prerequisite 'pci_bridge' /kisskb/src/arch/powerpc/boot/dts/fsl/p2020rdb-pc_36b.dts:59.23-62.4: Warning (pci_bridge): /pcie@fffe08000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/p2020si-post.dtsi:102.7-129.3 /kisskb/src/arch/powerpc/boot/dts/fsl/p2020si-post.dtsi:112.9-128.4: Warning (pci_bridge): /pcie@fffe08000/pcie@0: missing ranges for PCI bridge (or not a bridge) arch/powerpc/boot/dts/fsl/p2020rdb-pc_36b.dtb: Warning (unit_address_format): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/p2020rdb-pc_36b.dtb: Warning (pci_device_reg): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/p2020rdb-pc_36b.dtb: Warning (pci_device_bus_num): Failed prerequisite 'pci_bridge' /kisskb/src/arch/powerpc/boot/dts/fsl/p2020rdb.dts:251.22-254.4: Warning (pci_bridge): /pcie@ffe08000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/p2020si-post.dtsi:43.7-69.3 /kisskb/src/arch/powerpc/boot/dts/fsl/p2020si-post.dtsi:53.9-68.4: Warning (pci_bridge): /pcie@ffe08000/pcie@0: missing ranges for PCI bridge (or not a bridge) arch/powerpc/boot/dts/fsl/p2020rdb.dtb: Warning (unit_address_format): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/p2020rdb.dtb: Warning (pci_device_reg): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/p2020rdb.dtb: Warning (pci_device_bus_num): Failed prerequisite 'pci_bridge' /kisskb/src/arch/powerpc/boot/dts/fsl/ppa8548.dts:34.22-37.4: Warning (pci_bridge): /pci@fe0008000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8548si-post.dtsi:43.7-51.3 /kisskb/src/arch/powerpc/boot/dts/fsl/ppa8548.dts:39.22-42.4: Warning (pci_bridge): /pci@fe0009000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8548si-post.dtsi:54.7-62.3 /kisskb/src/arch/powerpc/boot/dts/fsl/ppa8548.dts:44.23-47.4: Warning (pci_bridge): /pcie@fe000a000: missing ranges for PCI bridge (or not a bridge) also defined at /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8548si-post.dtsi:65.7-90.3 /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8548si-post.dtsi:74.9-89.4: Warning (pci_bridge): /pcie@fe000a000/pcie@0: missing ranges for PCI bridge (or not a bridge) arch/powerpc/boot/dts/fsl/ppa8548.dtb: Warning (unit_address_format): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/ppa8548.dtb: Warning (pci_device_reg): Failed prerequisite 'pci_bridge' arch/powerpc/boot/dts/fsl/ppa8548.dtb: Warning (pci_device_bus_num): Failed prerequisite 'pci_bridge' Completed OK # rm -rf /kisskb/build/linus_ppc64_book3e_allmodconfig_powerpc-gcc12 # Build took: 0:16:25.009139