- 28 8月, 2015 1 次提交
-
-
由 Prarit Bhargava 提交于
dis_ucode_ldr was introduced in 65cef131 ("x86, microcode: Add a disable chicken bit") and will disable microcode loading on x86. This kernel parameter is buried in the code and should be added to the Documentation. Signed-off-by: NPrarit Bhargava <prarit@redhat.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
- 25 8月, 2015 3 次提交
-
-
由 Alexander Kuleshov 提交于
The IRQSTACKSIZE was renamed to the IRQ_STACK_SIZE in the (26f80bd6 x86-64: Convert irqstacks to per-cpu) commit, but it still named IRQSTACKSIZE in the documentation. This patch fixes this. Signed-off-by: NAlexander Kuleshov <kuleshovmail@gmail.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Nan Xiao 提交于
Hi all, According to "Intel Virtualization Technology for Directed I/O" specification, DRHD stands for "DMA Remapping Hardware Unit Definition" , not "DMA Engine Reporting Structure". Signed-off-by: NNan Xiao <nan@chinadtrace.org>
-
由 Mario Carrillo 提交于
The HOWTO document needed updating for the new kernel versioning. Signed-off-by: NMario Carrillo <mario.alfredo.c.arevalo@intel.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
- 24 8月, 2015 1 次提交
-
-
由 Jonathan Corbet 提交于
The kernel-doc script gets confused by __attribute__(()) strings in structures, so just clean the out. Also ignore the CRYPTO_MINALIGN_ATTR macro used in the crypto subsystem. Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
- 17 8月, 2015 1 次提交
-
-
Functions, Structs and Parameters definitions on kernel documentation are pure cosmetic, it only highlights the element. To ease the navigation in the documentation we should use <links> inside those tags so readers can easily jump between methods directly. This was discussed in 2014[1] and is implemented by getting a list of <refentries> from the DocBook XML to generate a database. Then it looks for <function>,<structnames> and <paramdef> tags that matches the ones in the database. As it only links existent references, no broken links are added. [1] - lists.freedesktop.org/archives/dri-devel/2014-August/065404.html Signed-off-by: NDanilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: Stephan Mueller <smueller@chronox.de> Cc: Michal Marek <mmarek@suse.cz> Cc: intel-gfx <intel-gfx@lists.freedesktop.org> Cc: dri-devel <dri-devel@lists.freedesktop.org> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
- 15 8月, 2015 1 次提交
-
-
由 Ben Hutchings 提交于
Some kernel-doc sections are included in multiple DocBook files. This means the mandocs target will generate the same manual page multiple times with different metadata (author name/address and manual title, taken from the including DocBook file). If it's invoked in a parallel build, the output is non-determinstic. Build the manual pages in a separate subdirectory per DocBook file, then sort and de-duplicate when installing them (which is serialised). Signed-off-by: NBen Hutchings <ben@decadent.org.uk> [jc: fixed conflicts with the docs tree] Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
- 14 8月, 2015 3 次提交
-
-
由 Leo Yan 提交于
Fix minor typo so that can pass correct pointer variable for container_of(). Signed-off-by: NLeo Yan <leo.yan@linaro.org> [jc: tweaked formatting] Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 David Drysdale 提交于
Add a document describing the process of adding a new system call, including the need for a flags argument for future compatibility, and covering 32-bit/64-bit concerns (albeit in an x86-centric way). Signed-off-by: NDavid Drysdale <drysdale@google.com> Reviewed-by: NMichael Kerrisk <mtk.manpages@gmail.com> Reviewed-by: NEric B Munson <emunson@akamai.com> Reviewed-by: NKees Cook <keescook@chromium.org> Reviewed-by: NRandy Dunlap <rdunlap@infradead.org> Reviewed-by: NJosh Triplett <josh@joshtriplett.org> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Tim Bird 提交于
There are some workqueue functions declared in workqueue.h, so include that in the workqueue section of the DocBook docs. Signed-off-by: NTim Bird <tim.bird@sonymobile.com> Acked-by: NRandy Dunlap <rdunlap@infradead.org> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
- 07 8月, 2015 5 次提交
-
-
由 Murali Karicheri 提交于
Currently there is no general documentation on Keystone SoCs in the Linux Documentation folder of the source tree. This patch adds some essential documentation with links to help users of Keystone Linux and also provide links to existing documents where necessary. Signed-off-by: NMurali Karicheri <m-karicheri2@ti.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
Describing arguments at top of a struct definition works fine for small/medium size structs, but it definitely doesn't work well for struct with a huge list of elements. Keeping the arguments list inside the struct body makes it easier to maintain the documentation. ie: /** * struct my_struct - short description * @a: first member * @b: second member * * Longer description */ struct my_struct { int a; int b; /** * @c: This is longer description of C * * You can use paragraphs to describe arguments * using this method. */ int c; }; This patch allows the use of this kind of syntax. Only one argument per comment and user can use how many paragraphs he needs. It should start with /**, which is already being used by kernel-doc. If those comment doesn't follow those rules, it will be ignored. Signed-off-by: NDanilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: Stephan Mueller <smueller@chronox.de> Cc: Michal Marek <mmarek@suse.cz> Cc: linux-kernel@vger.kernel.org Cc: linux-doc@vger.kernel.org Cc: intel-gfx <intel-gfx@lists.freedesktop.org> Cc: dri-devel <dri-devel@lists.freedesktop.org> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Jakub Wilk 提交于
Signed-off-by: NJakub Wilk <jwilk@jwilk.net> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Jonathan Corbet 提交于
Ben Hutchings writes: As part of the reproducible builds project, Jérémy Bobbio identified several time-dependent and non-deterministic functions in the document build process (htmldocs, mandocs targets). This patch series should fix all of those. I ended up reverting one patch that introduced problems.
-
由 Jonathan Corbet 提交于
This reverts commit b44158b1. This commit introduced warnings and possibly inconsistent results into the doc build process. The goal is good but it will need to be achieved another way. Reported-by: NMasanari Iida <standby24x7@gmail.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
- 24 7月, 2015 8 次提交
-
-
由 Johannes Thumshirn 提交于
Change men-chameleon-bus.txt according to the comments made by Randy Dunlap in https://lkml.org/lkml/2015/7/17/691. These are: * Some minor gramatical changes * Spelling fixes * Write the word "Chameleon" capitalized throughout the whole document * Explain MEN as MEN Mikro Elektronik GmbH. Signed-off-by: NJohannes Thumshirn <jthumshirn@suse.de> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Benjamin Herr 提交于
This patch changes the tense of a verb in SubmittingPatches to ensure grammatical validity of the containing sentence. Signed-off-by: NBenjamin Herr <ben@0x539.de> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Jonathan Corbet 提交于
The media maintainers want DocBook changes to go through their tree; document that wish accordingly.
-
由 Jim Davis 提交于
Install the man pages with mode 644 instead of 755 Signed-off-by: NJim Davis <jim.epost@gmail.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
I have noticed that there is no submenu in Evolution called Heading instead there is Paragraph style Signed-off-by: NAhmed Mohamed <ahmedsoliman0x666@gmail.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Johannes Thumshirn 提交于
Add basic introductory documentation for the MEN Chameleon Bus. Signed-off-by: NJohannes Thumshirn <jthumshirn@suse.de> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Wang Long 提交于
This patch update the Documentation/filesystems/debugfs.txt file. The main work is to add the description of the following functions: debugfs_create_atomic_t debugfs_create_u32_array debugfs_create_devm_seqfile debugfs_create_file_size Signed-off-by: NWang Long <long.wanglong@huawei.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Rabin Vincent 提交于
/proc/extfrag_index does not exist. This file is in debugfs. Fix the description of extfrag_threshold to reflect this. Signed-off-by: NRabin Vincent <rabin.vincent@axis.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
- 15 7月, 2015 4 次提交
-
-
由 Peter Huewe 提交于
docproc.c was moved in 2011 from scripts/basic to scripts -> updated the references accordingly Signed-off-by: NPeter Huewe <peterhuewe@gmx.de> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Masanari Iida 提交于
This patch fix a file name of example code. Signed-off-by: NMasanari Iida <standby24x7@gmail.com> Acked-by: NRodolfo Giometti <giometti@enneenne.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Sébastien Hinderer 提交于
"facilitate easier reviewing" says the same thing twice. Signed-off-by: NSébastien Hinderer <Sebastien.Hinderer@ens-lyon.org> [jc: made it "easier review"] Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Sébastien Hinderer 提交于
Signed-off-by: NSébastien Hinderer <Sebastien.Hinderer@ens-lyon.org> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
- 11 7月, 2015 11 次提交
-
-
由 Stefan Tatschner 提交于
In f35f6c8f (can: update MAINTAINERS and Documentation) chapter 3.3 was removed. This patch fixes some old references to chapter 3.4 which no longer exists. Signed-off-by: NStefan Tatschner <stefan@sevenbyte.org> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Diego Viola 提交于
Signed-off-by: NDiego Viola <diego.viola@gmail.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Masanari Iida 提交于
This patch fix some spelling typo found in Documentation/powerpc. Signed-off-by: NMasanari Iida <standby24x7@gmail.com> Acked-by: NIan Munsie <imunsie@au1.ibm.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Krzysztof Kozlowski 提交于
Extend the kernel-bootloader interface documentation with usage of register INFORM1 (0x0804) and different CPU resume address on Exynos542x family (with Multi-Cluster Power Management enabled). Additionally add glossary and reformat section titles. Signed-off-by: NKrzysztof Kozlowski <k.kozlowski.k@gmail.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Luis de Bethencourt 提交于
Link to the internal up to date Coding Style document inside the Kernel sources instead of an external one. Signed-off-by: NLuis de Bethencourt <luis@debethencourt.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Olivier C. Larocque 提交于
Remove 2 broken links for programming reference books in Appendix I. After a lookup on an Internet archives web site, it seems that these links have been broken for around 3 months. We can then assume that they will not be back up and safely remove them from the documentation. Signed-off-by: NOlivier C. Larocque <olivier.c.larocque@gmail.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Ben Hutchings 提交于
Together with the preceding changes, this allows man pages to be built reproducibly. Signed-off-by: NBen Hutchings <ben@decadent.org.uk> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Ben Hutchings 提交于
Some kernel-doc sections are included in multiple DocBook files. This means the mandocs target will generate the same manual page multiple times with different metadata (author name/address and manual title, taken from the including DocBook file). If it's invoked in a parallel build, the output is nondeterminstic. For each section that is duplicated, mark the less specific manual's inclusion as 'extra' and exclude it during conversion to manual pages. Use xmlif for this, as that is bundled with xmlto which we already use. I would have preferred to use more conventional markup for this, but each of the following approaches failed: 1. Wrap the extra inclusions with a new element and add a template to the stylesheet to include/exclude them. Unfortunately DocBook XSL doesn't seem to support foreign elements at an intermediate level in the document tree. 2. Use DocBook profiling. This works but requires passing an absolute path to the profile stylesheet to xmlto, so it's not portable. 3. Use SGML marked sections. docbook2x can handle these but xmlto chokes on them. Reported-by: NJérémy Bobbio <lunar@debian.org> Signed-off-by: NBen Hutchings <ben@decadent.org.uk> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Ben Hutchings 提交于
By default, DocBook XSL uses a non-deterministic function to generate IDs for HTML elements where it can't take a name from the input document. However, it has the option to generate 'consistent' (deterministic) IDs instead. Enable this to make the HTML pages reproducible. Reported-by: NJérémy Bobbio <lunar@debian.org> Signed-off-by: NBen Hutchings <ben@decadent.org.uk> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Ben Hutchings 提交于
The mtime on a man page is the build time. As gzip stores the mtime and original name in the compressed file by default, this makes compressed man pages unreproducible. Neither of these are important metadata in this case, so turn this off. Reported-by: NJérémy Bobbio <lunar@debian.org> Signed-off-by: NBen Hutchings <ben@decadent.org.uk> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Jérémy Bobbio 提交于
Regular expressions for highlights in kernel-doc are stored in a Perl hash. These hashes are ordered differently for each Perl run. This will prevent kernel-doc to behave deterministically when parsing “@foo()” as in some runs it will be interpreted as a parameter and in the others it will be interpreted as a function. We now sort the %highlights hash to get the same behavior on every run. Signed-off-by: NJérémy Bobbio <lunar@debian.org> Signed-off-by: NBen Hutchings <ben@decadent.org.uk> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
- 10 7月, 2015 2 次提交
-
-
由 Daniel Grimshaw 提交于
I am a high school student trying to become familiar with Linux kernel development. The btrfs documentation in Documentation/filesystems had a few typos and errors in whitespace. This patch corrects both of these. Signed-off-by: NDaniel Grimshaw <grimshaw@linux.vnet.ibm.com> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-
由 Sébastien Hinderer 提交于
From 7e0befc8e48a49e2ddf86bbd861027b14ea5a53d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hinderer?= <Sebastien.Hinderer@ens-lyon.org> Date: Wed, 8 Jul 2015 21:10:18 +0200 Subject: [PATCH] SubmittingPatches: fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" Signed-off-by: NSébastien Hinderer <Sebastien.Hinderer@ens-lyon.org> Signed-off-by: NJonathan Corbet <corbet@lwn.net>
-