Back to home page

OSCL-LXR

 
 

    


0001 .. _applying_patches:
0002 
0003 Applying Patches To The Linux Kernel
0004 ++++++++++++++++++++++++++++++++++++
0005 
0006 Original by:
0007         Jesper Juhl, August 2005
0008 
0009 .. note::
0010 
0011    This document is obsolete.  In most cases, rather than using ``patch``
0012    manually, you'll almost certainly want to look at using Git instead.
0013 
0014 A frequently asked question on the Linux Kernel Mailing List is how to apply
0015 a patch to the kernel or, more specifically, what base kernel a patch for
0016 one of the many trees/branches should be applied to. Hopefully this document
0017 will explain this to you.
0018 
0019 In addition to explaining how to apply and revert patches, a brief
0020 description of the different kernel trees (and examples of how to apply
0021 their specific patches) is also provided.
0022 
0023 
0024 What is a patch?
0025 ================
0026 
0027 A patch is a small text document containing a delta of changes between two
0028 different versions of a source tree. Patches are created with the ``diff``
0029 program.
0030 
0031 To correctly apply a patch you need to know what base it was generated from
0032 and what new version the patch will change the source tree into. These
0033 should both be present in the patch file metadata or be possible to deduce
0034 from the filename.
0035 
0036 
0037 How do I apply or revert a patch?
0038 =================================
0039 
0040 You apply a patch with the ``patch`` program. The patch program reads a diff
0041 (or patch) file and makes the changes to the source tree described in it.
0042 
0043 Patches for the Linux kernel are generated relative to the parent directory
0044 holding the kernel source dir.
0045 
0046 This means that paths to files inside the patch file contain the name of the
0047 kernel source directories it was generated against (or some other directory
0048 names like "a/" and "b/").
0049 
0050 Since this is unlikely to match the name of the kernel source dir on your
0051 local machine (but is often useful info to see what version an otherwise
0052 unlabeled patch was generated against) you should change into your kernel
0053 source directory and then strip the first element of the path from filenames
0054 in the patch file when applying it (the ``-p1`` argument to ``patch`` does
0055 this).
0056 
0057 To revert a previously applied patch, use the -R argument to patch.
0058 So, if you applied a patch like this::
0059 
0060         patch -p1 < ../patch-x.y.z
0061 
0062 You can revert (undo) it like this::
0063 
0064         patch -R -p1 < ../patch-x.y.z
0065 
0066 
0067 How do I feed a patch/diff file to ``patch``?
0068 =============================================
0069 
0070 This (as usual with Linux and other UNIX like operating systems) can be
0071 done in several different ways.
0072 
0073 In all the examples below I feed the file (in uncompressed form) to patch
0074 via stdin using the following syntax::
0075 
0076         patch -p1 < path/to/patch-x.y.z
0077 
0078 If you just want to be able to follow the examples below and don't want to
0079 know of more than one way to use patch, then you can stop reading this
0080 section here.
0081 
0082 Patch can also get the name of the file to use via the -i argument, like
0083 this::
0084 
0085         patch -p1 -i path/to/patch-x.y.z
0086 
0087 If your patch file is compressed with gzip or xz and you don't want to
0088 uncompress it before applying it, then you can feed it to patch like this
0089 instead::
0090 
0091         xzcat path/to/patch-x.y.z.xz | patch -p1
0092         bzcat path/to/patch-x.y.z.gz | patch -p1
0093 
0094 If you wish to uncompress the patch file by hand first before applying it
0095 (what I assume you've done in the examples below), then you simply run
0096 gunzip or xz on the file -- like this::
0097 
0098         gunzip patch-x.y.z.gz
0099         xz -d patch-x.y.z.xz
0100 
0101 Which will leave you with a plain text patch-x.y.z file that you can feed to
0102 patch via stdin or the ``-i`` argument, as you prefer.
0103 
0104 A few other nice arguments for patch are ``-s`` which causes patch to be silent
0105 except for errors which is nice to prevent errors from scrolling out of the
0106 screen too fast, and ``--dry-run`` which causes patch to just print a listing of
0107 what would happen, but doesn't actually make any changes. Finally ``--verbose``
0108 tells patch to print more information about the work being done.
0109 
0110 
0111 Common errors when patching
0112 ===========================
0113 
0114 When patch applies a patch file it attempts to verify the sanity of the
0115 file in different ways.
0116 
0117 Checking that the file looks like a valid patch file and checking the code
0118 around the bits being modified matches the context provided in the patch are
0119 just two of the basic sanity checks patch does.
0120 
0121 If patch encounters something that doesn't look quite right it has two
0122 options. It can either refuse to apply the changes and abort or it can try
0123 to find a way to make the patch apply with a few minor changes.
0124 
0125 One example of something that's not 'quite right' that patch will attempt to
0126 fix up is if all the context matches, the lines being changed match, but the
0127 line numbers are different. This can happen, for example, if the patch makes
0128 a change in the middle of the file but for some reasons a few lines have
0129 been added or removed near the beginning of the file. In that case
0130 everything looks good it has just moved up or down a bit, and patch will
0131 usually adjust the line numbers and apply the patch.
0132 
0133 Whenever patch applies a patch that it had to modify a bit to make it fit
0134 it'll tell you about it by saying the patch applied with **fuzz**.
0135 You should be wary of such changes since even though patch probably got it
0136 right it doesn't /always/ get it right, and the result will sometimes be
0137 wrong.
0138 
0139 When patch encounters a change that it can't fix up with fuzz it rejects it
0140 outright and leaves a file with a ``.rej`` extension (a reject file). You can
0141 read this file to see exactly what change couldn't be applied, so you can
0142 go fix it up by hand if you wish.
0143 
0144 If you don't have any third-party patches applied to your kernel source, but
0145 only patches from kernel.org and you apply the patches in the correct order,
0146 and have made no modifications yourself to the source files, then you should
0147 never see a fuzz or reject message from patch. If you do see such messages
0148 anyway, then there's a high risk that either your local source tree or the
0149 patch file is corrupted in some way. In that case you should probably try
0150 re-downloading the patch and if things are still not OK then you'd be advised
0151 to start with a fresh tree downloaded in full from kernel.org.
0152 
0153 Let's look a bit more at some of the messages patch can produce.
0154 
0155 If patch stops and presents a ``File to patch:`` prompt, then patch could not
0156 find a file to be patched. Most likely you forgot to specify -p1 or you are
0157 in the wrong directory. Less often, you'll find patches that need to be
0158 applied with ``-p0`` instead of ``-p1`` (reading the patch file should reveal if
0159 this is the case -- if so, then this is an error by the person who created
0160 the patch but is not fatal).
0161 
0162 If you get ``Hunk #2 succeeded at 1887 with fuzz 2 (offset 7 lines).`` or a
0163 message similar to that, then it means that patch had to adjust the location
0164 of the change (in this example it needed to move 7 lines from where it
0165 expected to make the change to make it fit).
0166 
0167 The resulting file may or may not be OK, depending on the reason the file
0168 was different than expected.
0169 
0170 This often happens if you try to apply a patch that was generated against a
0171 different kernel version than the one you are trying to patch.
0172 
0173 If you get a message like ``Hunk #3 FAILED at 2387.``, then it means that the
0174 patch could not be applied correctly and the patch program was unable to
0175 fuzz its way through. This will generate a ``.rej`` file with the change that
0176 caused the patch to fail and also a ``.orig`` file showing you the original
0177 content that couldn't be changed.
0178 
0179 If you get ``Reversed (or previously applied) patch detected!  Assume -R? [n]``
0180 then patch detected that the change contained in the patch seems to have
0181 already been made.
0182 
0183 If you actually did apply this patch previously and you just re-applied it
0184 in error, then just say [n]o and abort this patch. If you applied this patch
0185 previously and actually intended to revert it, but forgot to specify -R,
0186 then you can say [**y**]es here to make patch revert it for you.
0187 
0188 This can also happen if the creator of the patch reversed the source and
0189 destination directories when creating the patch, and in that case reverting
0190 the patch will in fact apply it.
0191 
0192 A message similar to ``patch: **** unexpected end of file in patch`` or
0193 ``patch unexpectedly ends in middle of line`` means that patch could make no
0194 sense of the file you fed to it. Either your download is broken, you tried to
0195 feed patch a compressed patch file without uncompressing it first, or the patch
0196 file that you are using has been mangled by a mail client or mail transfer
0197 agent along the way somewhere, e.g., by splitting a long line into two lines.
0198 Often these warnings can easily be fixed by joining (concatenating) the
0199 two lines that had been split.
0200 
0201 As I already mentioned above, these errors should never happen if you apply
0202 a patch from kernel.org to the correct version of an unmodified source tree.
0203 So if you get these errors with kernel.org patches then you should probably
0204 assume that either your patch file or your tree is broken and I'd advise you
0205 to start over with a fresh download of a full kernel tree and the patch you
0206 wish to apply.
0207 
0208 
0209 Are there any alternatives to ``patch``?
0210 ========================================
0211 
0212 
0213 Yes there are alternatives.
0214 
0215 You can use the ``interdiff`` program (http://cyberelk.net/tim/patchutils/) to
0216 generate a patch representing the differences between two patches and then
0217 apply the result.
0218 
0219 This will let you move from something like 5.7.2 to 5.7.3 in a single
0220 step. The -z flag to interdiff will even let you feed it patches in gzip or
0221 bzip2 compressed form directly without the use of zcat or bzcat or manual
0222 decompression.
0223 
0224 Here's how you'd go from 5.7.2 to 5.7.3 in a single step::
0225 
0226         interdiff -z ../patch-5.7.2.gz ../patch-5.7.3.gz | patch -p1
0227 
0228 Although interdiff may save you a step or two you are generally advised to
0229 do the additional steps since interdiff can get things wrong in some cases.
0230 
0231 Another alternative is ``ketchup``, which is a python script for automatic
0232 downloading and applying of patches (https://www.selenic.com/ketchup/).
0233 
0234 Other nice tools are diffstat, which shows a summary of changes made by a
0235 patch; lsdiff, which displays a short listing of affected files in a patch
0236 file, along with (optionally) the line numbers of the start of each patch;
0237 and grepdiff, which displays a list of the files modified by a patch where
0238 the patch contains a given regular expression.
0239 
0240 
0241 Where can I download the patches?
0242 =================================
0243 
0244 The patches are available at https://kernel.org/
0245 Most recent patches are linked from the front page, but they also have
0246 specific homes.
0247 
0248 The 5.x.y (-stable) and 5.x patches live at
0249 
0250         https://www.kernel.org/pub/linux/kernel/v5.x/
0251 
0252 The 5.x.y incremental patches live at
0253 
0254         https://www.kernel.org/pub/linux/kernel/v5.x/incr/
0255 
0256 The -rc patches are not stored on the webserver but are generated on
0257 demand from git tags such as
0258 
0259         https://git.kernel.org/torvalds/p/v5.1-rc1/v5.0
0260 
0261 The stable -rc patches live at
0262 
0263         https://www.kernel.org/pub/linux/kernel/v5.x/stable-review/
0264 
0265 
0266 The 5.x kernels
0267 ===============
0268 
0269 These are the base stable releases released by Linus. The highest numbered
0270 release is the most recent.
0271 
0272 If regressions or other serious flaws are found, then a -stable fix patch
0273 will be released (see below) on top of this base. Once a new 5.x base
0274 kernel is released, a patch is made available that is a delta between the
0275 previous 5.x kernel and the new one.
0276 
0277 To apply a patch moving from 5.6 to 5.7, you'd do the following (note
0278 that such patches do **NOT** apply on top of 5.x.y kernels but on top of the
0279 base 5.x kernel -- if you need to move from 5.x.y to 5.x+1 you need to
0280 first revert the 5.x.y patch).
0281 
0282 Here are some examples::
0283 
0284         # moving from 5.6 to 5.7
0285 
0286         $ cd ~/linux-5.6                # change to kernel source dir
0287         $ patch -p1 < ../patch-5.7      # apply the 5.7 patch
0288         $ cd ..
0289         $ mv linux-5.6 linux-5.7        # rename source dir
0290 
0291         # moving from 5.6.1 to 5.7
0292 
0293         $ cd ~/linux-5.6.1              # change to kernel source dir
0294         $ patch -p1 -R < ../patch-5.6.1 # revert the 5.6.1 patch
0295                                         # source dir is now 5.6
0296         $ patch -p1 < ../patch-5.7      # apply new 5.7 patch
0297         $ cd ..
0298         $ mv linux-5.6.1 linux-5.7      # rename source dir
0299 
0300 
0301 The 5.x.y kernels
0302 =================
0303 
0304 Kernels with 3-digit versions are -stable kernels. They contain small(ish)
0305 critical fixes for security problems or significant regressions discovered
0306 in a given 5.x kernel.
0307 
0308 This is the recommended branch for users who want the most recent stable
0309 kernel and are not interested in helping test development/experimental
0310 versions.
0311 
0312 If no 5.x.y kernel is available, then the highest numbered 5.x kernel is
0313 the current stable kernel.
0314 
0315 The -stable team provides normal as well as incremental patches. Below is
0316 how to apply these patches.
0317 
0318 Normal patches
0319 ~~~~~~~~~~~~~~
0320 
0321 These patches are not incremental, meaning that for example the 5.7.3
0322 patch does not apply on top of the 5.7.2 kernel source, but rather on top
0323 of the base 5.7 kernel source.
0324 
0325 So, in order to apply the 5.7.3 patch to your existing 5.7.2 kernel
0326 source you have to first back out the 5.7.2 patch (so you are left with a
0327 base 5.7 kernel source) and then apply the new 5.7.3 patch.
0328 
0329 Here's a small example::
0330 
0331         $ cd ~/linux-5.7.2              # change to the kernel source dir
0332         $ patch -p1 -R < ../patch-5.7.2 # revert the 5.7.2 patch
0333         $ patch -p1 < ../patch-5.7.3    # apply the new 5.7.3 patch
0334         $ cd ..
0335         $ mv linux-5.7.2 linux-5.7.3    # rename the kernel source dir
0336 
0337 Incremental patches
0338 ~~~~~~~~~~~~~~~~~~~
0339 
0340 Incremental patches are different: instead of being applied on top
0341 of base 5.x kernel, they are applied on top of previous stable kernel
0342 (5.x.y-1).
0343 
0344 Here's the example to apply these::
0345 
0346         $ cd ~/linux-5.7.2              # change to the kernel source dir
0347         $ patch -p1 < ../patch-5.7.2-3  # apply the new 5.7.3 patch
0348         $ cd ..
0349         $ mv linux-5.7.2 linux-5.7.3    # rename the kernel source dir
0350 
0351 
0352 The -rc kernels
0353 ===============
0354 
0355 These are release-candidate kernels. These are development kernels released
0356 by Linus whenever he deems the current git (the kernel's source management
0357 tool) tree to be in a reasonably sane state adequate for testing.
0358 
0359 These kernels are not stable and you should expect occasional breakage if
0360 you intend to run them. This is however the most stable of the main
0361 development branches and is also what will eventually turn into the next
0362 stable kernel, so it is important that it be tested by as many people as
0363 possible.
0364 
0365 This is a good branch to run for people who want to help out testing
0366 development kernels but do not want to run some of the really experimental
0367 stuff (such people should see the sections about -next and -mm kernels below).
0368 
0369 The -rc patches are not incremental, they apply to a base 5.x kernel, just
0370 like the 5.x.y patches described above. The kernel version before the -rcN
0371 suffix denotes the version of the kernel that this -rc kernel will eventually
0372 turn into.
0373 
0374 So, 5.8-rc5 means that this is the fifth release candidate for the 5.8
0375 kernel and the patch should be applied on top of the 5.7 kernel source.
0376 
0377 Here are 3 examples of how to apply these patches::
0378 
0379         # first an example of moving from 5.7 to 5.8-rc3
0380 
0381         $ cd ~/linux-5.7                        # change to the 5.7 source dir
0382         $ patch -p1 < ../patch-5.8-rc3          # apply the 5.8-rc3 patch
0383         $ cd ..
0384         $ mv linux-5.7 linux-5.8-rc3            # rename the source dir
0385 
0386         # now let's move from 5.8-rc3 to 5.8-rc5
0387 
0388         $ cd ~/linux-5.8-rc3                    # change to the 5.8-rc3 dir
0389         $ patch -p1 -R < ../patch-5.8-rc3       # revert the 5.8-rc3 patch
0390         $ patch -p1 < ../patch-5.8-rc5          # apply the new 5.8-rc5 patch
0391         $ cd ..
0392         $ mv linux-5.8-rc3 linux-5.8-rc5        # rename the source dir
0393 
0394         # finally let's try and move from 5.7.3 to 5.8-rc5
0395 
0396         $ cd ~/linux-5.7.3                      # change to the kernel source dir
0397         $ patch -p1 -R < ../patch-5.7.3         # revert the 5.7.3 patch
0398         $ patch -p1 < ../patch-5.8-rc5          # apply new 5.8-rc5 patch
0399         $ cd ..
0400         $ mv linux-5.7.3 linux-5.8-rc5          # rename the kernel source dir
0401 
0402 
0403 The -mm patches and the linux-next tree
0404 =======================================
0405 
0406 The -mm patches are experimental patches released by Andrew Morton.
0407 
0408 In the past, -mm tree were used to also test subsystem patches, but this
0409 function is now done via the
0410 `linux-next` (https://www.kernel.org/doc/man-pages/linux-next.html)
0411 tree. The Subsystem maintainers push their patches first to linux-next,
0412 and, during the merge window, sends them directly to Linus.
0413 
0414 The -mm patches serve as a sort of proving ground for new features and other
0415 experimental patches that aren't merged via a subsystem tree.
0416 Once such patches has proved its worth in -mm for a while Andrew pushes
0417 it on to Linus for inclusion in mainline.
0418 
0419 The linux-next tree is daily updated, and includes the -mm patches.
0420 Both are in constant flux and contains many experimental features, a
0421 lot of debugging patches not appropriate for mainline etc., and is the most
0422 experimental of the branches described in this document.
0423 
0424 These patches are not appropriate for use on systems that are supposed to be
0425 stable and they are more risky to run than any of the other branches (make
0426 sure you have up-to-date backups -- that goes for any experimental kernel but
0427 even more so for -mm patches or using a Kernel from the linux-next tree).
0428 
0429 Testing of -mm patches and linux-next is greatly appreciated since the whole
0430 point of those are to weed out regressions, crashes, data corruption bugs,
0431 build breakage (and any other bug in general) before changes are merged into
0432 the more stable mainline Linus tree.
0433 
0434 But testers of -mm and linux-next should be aware that breakages are
0435 more common than in any other tree.
0436 
0437 
0438 This concludes this list of explanations of the various kernel trees.
0439 I hope you are now clear on how to apply the various patches and help testing
0440 the kernel.
0441 
0442 Thank you's to Randy Dunlap, Rolf Eike Beer, Linus Torvalds, Bodo Eggert,
0443 Johannes Stezenbach, Grant Coady, Pavel Machek and others that I may have
0444 forgotten for their reviews and contributions to this document.