From: Jakub Kicinski <kuba@kernel•org>
To: Mina Almasry <almasrymina@google•com>
Cc: netdev@vger•kernel.org, linux-kernel@vger•kernel.org,
linux-doc@vger•kernel.org, linux-alpha@vger•kernel.org,
linux-mips@vger•kernel.org, linux-parisc@vger•kernel.org,
sparclinux@vger•kernel.org, linux-trace-kernel@vger•kernel.org,
linux-arch@vger•kernel.org, linux-kselftest@vger•kernel.org,
bpf@vger•kernel.org, linux-media@vger•kernel.org,
dri-devel@lists•freedesktop.org,
"David S. Miller" <davem@davemloft•net>,
"Eric Dumazet" <edumazet@google•com>,
"Paolo Abeni" <pabeni@redhat•com>,
"Donald Hunter" <donald.hunter@gmail•com>,
"Jonathan Corbet" <corbet@lwn•net>,
"Richard Henderson" <richard.henderson@linaro•org>,
"Ivan Kokshaysky" <ink@jurassic•park.msu.ru>,
"Matt Turner" <mattst88@gmail•com>,
"Thomas Bogendoerfer" <tsbogend@alpha•franken.de>,
"James E.J. Bottomley" <James.Bottomley@hansenpartnership•com>,
"Helge Deller" <deller@gmx•de>,
"Andreas Larsson" <andreas@gaisler•com>,
"Jesper Dangaard Brouer" <hawk@kernel•org>,
"Ilias Apalodimas" <ilias.apalodimas@linaro•org>,
"Steven Rostedt" <rostedt@goodmis•org>,
"Masami Hiramatsu" <mhiramat@kernel•org>,
"Mathieu Desnoyers" <mathieu.desnoyers@efficios•com>,
"Arnd Bergmann" <arnd@arndb•de>,
"Steffen Klassert" <steffen.klassert@secunet•com>,
"Herbert Xu" <herbert@gondor•apana.org.au>,
"David Ahern" <dsahern@kernel•org>,
"Willem de Bruijn" <willemdebruijn.kernel@gmail•com>,
"Shuah Khan" <shuah@kernel•org>,
"Alexei Starovoitov" <ast@kernel•org>,
"Daniel Borkmann" <daniel@iogearbox•net>,
"John Fastabend" <john.fastabend@gmail•com>,
"Sumit Semwal" <sumit.semwal@linaro•org>,
"Christian König" <christian.koenig@amd•com>,
"Bagas Sanjaya" <bagasdotme@gmail•com>,
"Christoph Hellwig" <hch@infradead•org>,
"Nikolay Aleksandrov" <razor@blackwall•org>,
"Taehee Yoo" <ap420073@gmail•com>,
"Pavel Begunkov" <asml.silence@gmail•com>,
"David Wei" <dw@davidwei•uk>, "Jason Gunthorpe" <jgg@ziepe•ca>,
"Yunsheng Lin" <linyunsheng@huawei•com>,
"Shailend Chand" <shailend@google•com>,
"Harshitha Ramamurthy" <hramamurthy@google•com>,
"Shakeel Butt" <shakeel.butt@linux•dev>,
"Jeroen de Borst" <jeroendb@google•com>,
"Praveen Kaligineedi" <pkaligineedi@google•com>
Subject: Re: [PATCH net-next v20 00/13] Device Memory TCP
Date: Mon, 19 Aug 2024 15:45:49 -0700 [thread overview]
Message-ID: <20240819154549.3df4589b@kernel.org> (raw)
In-Reply-To: <CAHS8izMqcLnmo9792FPkkXPQSBWSjFGO+QHhkou=PaDHLwtsRw@mail.gmail.com>
On Mon, 19 Aug 2024 16:38:32 -0400 Mina Almasry wrote:
> Looks like in this iteration I resolved the previous test failure, but
> introduced a build regression with certain configs:
>
> ld: vmlinux.o: in function `netdev_rx_queue_restart':
> (.text+0x6a4133): undefined reference to `page_pool_check_memory_provider'
> make[3]: *** [../scripts/Makefile.vmlinux:34: vmlinux] Error 1
> make[2]: *** [/home/kunit/testing/Makefile:1156: vmlinux] Error 2
> make[1]: *** [/home/kunit/testing/Makefile:224: __sub-make] Error 2
> make: *** [Makefile:224: __sub-make] Error 2
>
> Looks like I'm not build testing with enough config variations (in
> this case CONFIG_NET=y but CONFIG_PAGE_POOL=n). I've fixed the issue
> locally and added a test to my presubmit checks with this config and a
> couple of risky others. Sorry about that.
Happens! Please share v21 later today I'll skip reviewing this one.
prev parent reply other threads:[~2024-08-19 22:45 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-19 3:54 [PATCH net-next v20 00/13] Device Memory TCP Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 01/13] netdev: add netdev_rx_queue_restart() Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 02/13] net: netdev netlink api to bind dma-buf to a net device Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 03/13] netdev: support binding dma-buf to netdevice Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 04/13] netdev: netdevice devmem allocator Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 05/13] page_pool: devmem support Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 06/13] memory-provider: dmabuf devmem memory provider Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 07/13] net: support non paged skb frags Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 08/13] net: add support for skbs with unreadable frags Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 09/13] tcp: RX path for devmem TCP Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 10/13] net: add SO_DEVMEM_DONTNEED setsockopt to release RX frags Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 11/13] net: add devmem TCP documentation Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 12/13] selftests: add ncdevmem, netcat for devmem TCP Mina Almasry
2024-08-19 3:54 ` [PATCH net-next v20 13/13] netdev: add dmabuf introspection Mina Almasry
2024-08-19 20:38 ` [PATCH net-next v20 00/13] Device Memory TCP Mina Almasry
2024-08-19 22:45 ` Jakub Kicinski [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=20240819154549.3df4589b@kernel.org \
--to=kuba@kernel$(echo .)org \
--cc=James.Bottomley@hansenpartnership$(echo .)com \
--cc=almasrymina@google$(echo .)com \
--cc=andreas@gaisler$(echo .)com \
--cc=ap420073@gmail$(echo .)com \
--cc=arnd@arndb$(echo .)de \
--cc=asml.silence@gmail$(echo .)com \
--cc=ast@kernel$(echo .)org \
--cc=bagasdotme@gmail$(echo .)com \
--cc=bpf@vger$(echo .)kernel.org \
--cc=christian.koenig@amd$(echo .)com \
--cc=corbet@lwn$(echo .)net \
--cc=daniel@iogearbox$(echo .)net \
--cc=davem@davemloft$(echo .)net \
--cc=deller@gmx$(echo .)de \
--cc=donald.hunter@gmail$(echo .)com \
--cc=dri-devel@lists$(echo .)freedesktop.org \
--cc=dsahern@kernel$(echo .)org \
--cc=dw@davidwei$(echo .)uk \
--cc=edumazet@google$(echo .)com \
--cc=hawk@kernel$(echo .)org \
--cc=hch@infradead$(echo .)org \
--cc=herbert@gondor$(echo .)apana.org.au \
--cc=hramamurthy@google$(echo .)com \
--cc=ilias.apalodimas@linaro$(echo .)org \
--cc=ink@jurassic$(echo .)park.msu.ru \
--cc=jeroendb@google$(echo .)com \
--cc=jgg@ziepe$(echo .)ca \
--cc=john.fastabend@gmail$(echo .)com \
--cc=linux-alpha@vger$(echo .)kernel.org \
--cc=linux-arch@vger$(echo .)kernel.org \
--cc=linux-doc@vger$(echo .)kernel.org \
--cc=linux-kernel@vger$(echo .)kernel.org \
--cc=linux-kselftest@vger$(echo .)kernel.org \
--cc=linux-media@vger$(echo .)kernel.org \
--cc=linux-mips@vger$(echo .)kernel.org \
--cc=linux-parisc@vger$(echo .)kernel.org \
--cc=linux-trace-kernel@vger$(echo .)kernel.org \
--cc=linyunsheng@huawei$(echo .)com \
--cc=mathieu.desnoyers@efficios$(echo .)com \
--cc=mattst88@gmail$(echo .)com \
--cc=mhiramat@kernel$(echo .)org \
--cc=netdev@vger$(echo .)kernel.org \
--cc=pabeni@redhat$(echo .)com \
--cc=pkaligineedi@google$(echo .)com \
--cc=razor@blackwall$(echo .)org \
--cc=richard.henderson@linaro$(echo .)org \
--cc=rostedt@goodmis$(echo .)org \
--cc=shailend@google$(echo .)com \
--cc=shakeel.butt@linux$(echo .)dev \
--cc=shuah@kernel$(echo .)org \
--cc=sparclinux@vger$(echo .)kernel.org \
--cc=steffen.klassert@secunet$(echo .)com \
--cc=sumit.semwal@linaro$(echo .)org \
--cc=tsbogend@alpha$(echo .)franken.de \
--cc=willemdebruijn.kernel@gmail$(echo .)com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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