blob: a64c01b52b4c55286632a05b1578c4b6b833d8be [file] [log] [blame]
Tobin C. Harding96398dd2018-07-26 15:02:25 +10001.. SPDX-License-Identifier: GPL-2.0
2
3.. _netdev-FAQ:
4
5==========
6netdev FAQ
7==========
8
Baruch Siach1d898b22020-12-20 10:49:47 +02009What is netdev?
10---------------
11It is a mailing list for all network-related Linux stuff. This
Tobin C. Harding96398dd2018-07-26 15:02:25 +100012includes anything found under net/ (i.e. core code like IPv6) and
13drivers/net (i.e. hardware specific drivers) in the Linux source tree.
14
15Note that some subsystems (e.g. wireless drivers) which have a high
16volume of traffic have their own specific mailing lists.
17
18The netdev list is managed (like many other Linux mailing lists) through
19VGER (http://vger.kernel.org/) and archives can be found below:
20
21- http://marc.info/?l=linux-netdev
22- http://www.spinics.net/lists/netdev/
23
24Aside from subsystems like that mentioned above, all network-related
25Linux development (i.e. RFC, review, comments, etc.) takes place on
26netdev.
27
Baruch Siach1d898b22020-12-20 10:49:47 +020028How do the changes posted to netdev make their way into Linux?
29--------------------------------------------------------------
30There are always two trees (git repositories) in play. Both are
Tobin C. Harding96398dd2018-07-26 15:02:25 +100031driven by David Miller, the main network maintainer. There is the
32``net`` tree, and the ``net-next`` tree. As you can probably guess from
33the names, the ``net`` tree is for fixes to existing code already in the
34mainline tree from Linus, and ``net-next`` is where the new code goes
35for the future release. You can find the trees here:
36
Jesper Dangaard Brouere64b2742020-01-03 13:36:22 +010037- https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
38- https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
Tobin C. Harding96398dd2018-07-26 15:02:25 +100039
Baruch Siach1d898b22020-12-20 10:49:47 +020040How often do changes from these trees make it to the mainline Linus tree?
41-------------------------------------------------------------------------
42To understand this, you need to know a bit of background information on
Tobin C. Harding96398dd2018-07-26 15:02:25 +100043the cadence of Linux development. Each new release starts off with a
44two week "merge window" where the main maintainers feed their new stuff
45to Linus for merging into the mainline tree. After the two weeks, the
46merge window is closed, and it is called/tagged ``-rc1``. No new
47features get mainlined after this -- only fixes to the rc1 content are
48expected. After roughly a week of collecting fixes to the rc1 content,
49rc2 is released. This repeats on a roughly weekly basis until rc7
50(typically; sometimes rc6 if things are quiet, or rc8 if things are in a
51state of churn), and a week after the last vX.Y-rcN was done, the
52official vX.Y is released.
53
54Relating that to netdev: At the beginning of the 2-week merge window,
55the ``net-next`` tree will be closed - no new changes/features. The
56accumulated new content of the past ~10 weeks will be passed onto
57mainline/Linus via a pull request for vX.Y -- at the same time, the
58``net`` tree will start accumulating fixes for this pulled content
59relating to vX.Y
60
61An announcement indicating when ``net-next`` has been closed is usually
62sent to netdev, but knowing the above, you can predict that in advance.
63
64IMPORTANT: Do not send new ``net-next`` content to netdev during the
65period during which ``net-next`` tree is closed.
66
67Shortly after the two weeks have passed (and vX.Y-rc1 is released), the
68tree for ``net-next`` reopens to collect content for the next (vX.Y+1)
69release.
70
71If you aren't subscribed to netdev and/or are simply unsure if
72``net-next`` has re-opened yet, simply check the ``net-next`` git
73repository link above for any new networking-related commits. You may
74also check the following website for the current status:
75
76 http://vger.kernel.org/~davem/net-next.html
77
78The ``net`` tree continues to collect fixes for the vX.Y content, and is
79fed back to Linus at regular (~weekly) intervals. Meaning that the
80focus for ``net`` is on stabilization and bug fixes.
81
82Finally, the vX.Y gets released, and the whole cycle starts over.
83
Baruch Siach1d898b22020-12-20 10:49:47 +020084So where are we now in this cycle?
85----------------------------------
Tobin C. Harding96398dd2018-07-26 15:02:25 +100086
87Load the mainline (Linus) page here:
88
89 https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
90
91and note the top of the "tags" section. If it is rc1, it is early in
92the dev cycle. If it was tagged rc7 a week ago, then a release is
93probably imminent.
94
Baruch Siach1d898b22020-12-20 10:49:47 +020095How do I indicate which tree (net vs. net-next) my patch should be in?
96----------------------------------------------------------------------
97Firstly, think whether you have a bug fix or new "next-like" content.
Tobin C. Harding96398dd2018-07-26 15:02:25 +100098Then once decided, assuming that you use git, use the prefix flag, i.e.
99::
100
101 git format-patch --subject-prefix='PATCH net-next' start..finish
102
103Use ``net`` instead of ``net-next`` (always lower case) in the above for
104bug-fix ``net`` content. If you don't use git, then note the only magic
105in the above is just the subject text of the outgoing e-mail, and you
106can manually change it yourself with whatever MUA you are comfortable
107with.
108
Baruch Siach1d898b22020-12-20 10:49:47 +0200109I sent a patch and I'm wondering what happened to it - how can I tell whether it got merged?
110--------------------------------------------------------------------------------------------
111Start by looking at the main patchworks queue for netdev:
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000112
Jakub Kicinski460cd172020-11-09 19:51:20 -0800113 https://patchwork.kernel.org/project/netdevbpf/list/
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000114
115The "State" field will tell you exactly where things are at with your
116patch.
117
Baruch Siach1d898b22020-12-20 10:49:47 +0200118The above only says "Under Review". How can I find out more?
119-------------------------------------------------------------
120Generally speaking, the patches get triaged quickly (in less than
Tobin C. Harding96398dd2018-07-26 15:02:25 +100012148h). So be patient. Asking the maintainer for status updates on your
122patch is a good way to ensure your patch is ignored or pushed to the
123bottom of the priority list.
124
Baruch Siach1d898b22020-12-20 10:49:47 +0200125I submitted multiple versions of the patch series. Should I directly update patchwork for the previous versions of these patch series?
126--------------------------------------------------------------------------------------------------------------------------------------
127No, please don't interfere with the patch status on patchwork, leave
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000128it to the maintainer to figure out what is the most recent and current
129version that should be applied. If there is any doubt, the maintainer
130will reply and ask what should be done.
131
Baruch Siach1d898b22020-12-20 10:49:47 +0200132I made changes to only a few patches in a patch series should I resend only those changed?
133------------------------------------------------------------------------------------------
134No, please resend the entire patch series and make sure you do number your
Florian Fainelliffa91252019-03-18 11:07:33 -0700135patches such that it is clear this is the latest and greatest set of patches
136that can be applied.
137
Baruch Siach1d898b22020-12-20 10:49:47 +0200138I submitted multiple versions of a patch series and it looks like a version other than the last one has been accepted, what should I do?
139----------------------------------------------------------------------------------------------------------------------------------------
140There is no revert possible, once it is pushed out, it stays like that.
Florian Fainelliffa91252019-03-18 11:07:33 -0700141Please send incremental versions on top of what has been merged in order to fix
142the patches the way they would look like if your latest patch series was to be
143merged.
144
Baruch Siach1d898b22020-12-20 10:49:47 +0200145How can I tell what patches are queued up for backporting to the various stable releases?
146-----------------------------------------------------------------------------------------
147Normally Greg Kroah-Hartman collects stable commits himself, but for
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000148networking, Dave collects up patches he deems critical for the
149networking subsystem, and then hands them off to Greg.
150
151There is a patchworks queue that you can see here:
152
Jakub Kicinski460cd172020-11-09 19:51:20 -0800153 https://patchwork.kernel.org/bundle/netdev/stable/?state=*
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000154
155It contains the patches which Dave has selected, but not yet handed off
156to Greg. If Greg already has the patch, then it will be here:
157
158 https://git.kernel.org/pub/scm/linux/kernel/git/stable/stable-queue.git
159
160A quick way to find whether the patch is in this stable-queue is to
161simply clone the repo, and then git grep the mainline commit ID, e.g.
162::
163
164 stable-queue$ git grep -l 284041ef21fdf2e
165 releases/3.0.84/ipv6-fix-possible-crashes-in-ip6_cork_release.patch
166 releases/3.4.51/ipv6-fix-possible-crashes-in-ip6_cork_release.patch
167 releases/3.9.8/ipv6-fix-possible-crashes-in-ip6_cork_release.patch
168 stable/stable-queue$
169
Baruch Siach1d898b22020-12-20 10:49:47 +0200170I see a network patch and I think it should be backported to stable. Should I request it via stable@vger.kernel.org like the references in the kernel's Documentation/process/stable-kernel-rules.rst file say?
171---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
172No, not for networking. Check the stable queues as per above first
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000173to see if it is already queued. If not, then send a mail to netdev,
174listing the upstream commit ID and why you think it should be a stable
175candidate.
176
177Before you jump to go do the above, do note that the normal stable rules
178in :ref:`Documentation/process/stable-kernel-rules.rst <stable_kernel_rules>`
179still apply. So you need to explicitly indicate why it is a critical
180fix and exactly what users are impacted. In addition, you need to
181convince yourself that you *really* think it has been overlooked,
182vs. having been considered and rejected.
183
184Generally speaking, the longer it has had a chance to "soak" in
185mainline, the better the odds that it is an OK candidate for stable. So
186scrambling to request a commit be added the day after it appears should
187be avoided.
188
Baruch Siach1d898b22020-12-20 10:49:47 +0200189I have created a network patch and I think it should be backported to stable. Should I add a Cc: stable@vger.kernel.org like the references in the kernel's Documentation/ directory say?
190-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
191No. See above answer. In short, if you think it really belongs in
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000192stable, then ensure you write a decent commit log that describes who
193gets impacted by the bug fix and how it manifests itself, and when the
194bug was introduced. If you do that properly, then the commit will get
195handled appropriately and most likely get put in the patchworks stable
196queue if it really warrants it.
197
198If you think there is some valid information relating to it being in
199stable that does *not* belong in the commit log, then use the three dash
200marker line as described in
201:ref:`Documentation/process/submitting-patches.rst <the_canonical_patch_format>`
202to temporarily embed that information into the patch that you send.
203
Baruch Siach1d898b22020-12-20 10:49:47 +0200204Are all networking bug fixes backported to all stable releases?
205---------------------------------------------------------------
206Due to capacity, Dave could only take care of the backports for the
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000207last two stable releases. For earlier stable releases, each stable
208branch maintainer is supposed to take care of them. If you find any
209patch is missing from an earlier stable branch, please notify
210stable@vger.kernel.org with either a commit ID or a formal patch
211backported, and CC Dave and other relevant networking developers.
212
Baruch Siach1d898b22020-12-20 10:49:47 +0200213Is the comment style convention different for the networking content?
214---------------------------------------------------------------------
215Yes, in a largely trivial way. Instead of this::
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000216
217 /*
218 * foobar blah blah blah
219 * another line of text
220 */
221
222it is requested that you make it look like this::
223
224 /* foobar blah blah blah
225 * another line of text
226 */
227
Baruch Siach1d898b22020-12-20 10:49:47 +0200228I am working in existing code that has the former comment style and not the latter. Should I submit new code in the former style or the latter?
229-----------------------------------------------------------------------------------------------------------------------------------------------
230Make it the latter style, so that eventually all code in the domain
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000231of netdev is of this format.
232
Baruch Siach1d898b22020-12-20 10:49:47 +0200233I found a bug that might have possible security implications or similar. Should I mail the main netdev maintainer off-list?
234---------------------------------------------------------------------------------------------------------------------------
235No. The current netdev maintainer has consistently requested that
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000236people use the mailing lists and not reach out directly. If you aren't
237OK with that, then perhaps consider mailing security@kernel.org or
238reading about http://oss-security.openwall.org/wiki/mailing-lists/distros
239as possible alternative mechanisms.
240
Baruch Siach1d898b22020-12-20 10:49:47 +0200241What level of testing is expected before I submit my change?
242------------------------------------------------------------
243If your changes are against ``net-next``, the expectation is that you
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000244have tested by layering your changes on top of ``net-next``. Ideally
245you will have done run-time testing specific to your change, but at a
246minimum, your changes should survive an ``allyesconfig`` and an
247``allmodconfig`` build without new warnings or failures.
248
Baruch Siach1d898b22020-12-20 10:49:47 +0200249How do I post corresponding changes to user space components?
250-------------------------------------------------------------
251User space code exercising kernel features should be posted
Jakub Kicinski6f7a1f92020-11-24 20:15:24 -0800252alongside kernel patches. This gives reviewers a chance to see
253how any new interface is used and how well it works.
254
255When user space tools reside in the kernel repo itself all changes
256should generally come as one series. If series becomes too large
257or the user space project is not reviewed on netdev include a link
258to a public repo where user space patches can be seen.
259
260In case user space tooling lives in a separate repository but is
261reviewed on netdev (e.g. patches to `iproute2` tools) kernel and
262user space patches should form separate series (threads) when posted
263to the mailing list, e.g.::
264
265 [PATCH net-next 0/3] net: some feature cover letter
266 └─ [PATCH net-next 1/3] net: some feature prep
267 └─ [PATCH net-next 2/3] net: some feature do it
268 └─ [PATCH net-next 3/3] selftest: net: some feature
269
270 [PATCH iproute2-next] ip: add support for some feature
271
272Posting as one thread is discouraged because it confuses patchwork
273(as of patchwork 2.2.2).
274
Jakub Kicinskif1d77b22021-02-09 12:34:09 -0800275Can I reproduce the checks from patchwork on my local machine?
276--------------------------------------------------------------
277
278Checks in patchwork are mostly simple wrappers around existing kernel
279scripts, the sources are available at:
280
281https://github.com/kuba-moo/nipa/tree/master/tests
282
283Running all the builds and checks locally is a pain, can I post my patches and have the patchwork bot validate them?
284--------------------------------------------------------------------------------------------------------------------
285
286No, you must ensure that your patches are ready by testing them locally
287before posting to the mailing list. The patchwork build bot instance
288gets overloaded very easily and netdev@vger really doesn't need more
289traffic if we can help it.
290
Baruch Siach1d898b22020-12-20 10:49:47 +0200291Any other tips to help ensure my net/net-next patch gets OK'd?
292--------------------------------------------------------------
293Attention to detail. Re-read your own work as if you were the
Tobin C. Harding96398dd2018-07-26 15:02:25 +1000294reviewer. You can start with using ``checkpatch.pl``, perhaps even with
295the ``--strict`` flag. But do not be mindlessly robotic in doing so.
296If your change is a bug fix, make sure your commit log indicates the
297end-user visible symptom, the underlying reason as to why it happens,
298and then if necessary, explain why the fix proposed is the best way to
299get things done. Don't mangle whitespace, and as is common, don't
300mis-indent function arguments that span multiple lines. If it is your
301first patch, mail it to yourself so you can test apply it to an
302unpatched tree to confirm infrastructure didn't mangle it.
303
304Finally, go back and read
305:ref:`Documentation/process/submitting-patches.rst <submittingpatches>`
306to be sure you are not repeating some common mistake documented there.