Figo.zhang | 1 Jun 2009 04:16
Picon

[PATCH]Documentation/atomic_ops.txt:clean up sample code

list_add() lost a parameter in sample code.

Signed-off-by: Figo.zhang <figo1802 <at> gmail.com>
---
 Documentation/atomic_ops.txt |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/atomic_ops.txt b/Documentation/atomic_ops.txt
index 4ef2450..396bec3 100644
--- a/Documentation/atomic_ops.txt
+++ b/Documentation/atomic_ops.txt
 <at>  <at>  -229,10 +229,10  <at>  <at>  kernel.  It is the use of atomic counters to implement reference
 counting, and it works such that once the counter falls to zero it can
 be guaranteed that no other entity can be accessing the object:

-static void obj_list_add(struct obj *obj)
+static void obj_list_add(struct obj *obj, struct list_head *head)
 {
 	obj->active = 1;
-	list_add(&obj->list);
+	list_add(&obj->list, head);
 }

 static void obj_list_del(struct obj *obj)

--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

(Continue reading)

vibi sreenivasan | 1 Jun 2009 10:16

[PATCH 0/5]:Removed reference to non-existing file Documentation/PCI/PCI-DMA-mapping.txt

hi, 
	Change reference to non-existing file Documentation/PCI/PCI-DMA-mapping.txt to
	Documentation/DMA-mapping.txt .

Thanks & Regards
vibi sreenivasan

--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

vibi sreenivasan | 1 Jun 2009 10:22

[PATCH 3/5]:Removed reference to non-existing file Documentation/PCI/PCI-DMA-mapping.txt

    File Documentation/PCI/PCI-DMA-mapping.txt does not exist.
    Documentation/DMA-mapping.txt contains DMA Mapping details

Signed-off-by: vibi sreenivasan <vibi_sreenivasan <at> cms.com>

diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt
index f5b7127..c50d459 100644
--- a/Documentation/memory-barriers.txt
+++ b/Documentation/memory-barriers.txt
 <at>  <at>  -431,7 +431,7  <at>  <at>  There are certain things that the Linux kernel memory barriers do not guarantee:
 	[*] For information on bus mastering DMA and coherency please read:

 	    Documentation/PCI/pci.txt
-	    Documentation/PCI/PCI-DMA-mapping.txt
+	    Documentation/DMA-mapping.txt
 	    Documentation/DMA-API.txt

 
--

-- 
1.6.0

--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

vibi sreenivasan | 1 Jun 2009 10:21

[PATCH 2/5]:Removed reference to non-existing file Documentation/PCI/PCI-DMA-mapping.txt

  File Documentation/PCI/PCI-DMA-mapping.txt does not exist.
  Documentation/DMA-mapping.txt contains DMA Mapping details

Signed-off-by: vibi sreenivasan <vibi_sreenivasan <at> cms.com>

diff --git a/Documentation/DMA-API.txt b/Documentation/DMA-API.txt
index d9aa43d..f3a9390 100644
--- a/Documentation/DMA-API.txt
+++ b/Documentation/DMA-API.txt
 <at>  <at>  -5,7 +5,7  <at>  <at> 

 This document describes the DMA API.  For a more gentle introduction
 phrased in terms of the pci_ equivalents (and actual examples) see
-Documentation/PCI/PCI-DMA-mapping.txt.
+Documentation/DMA-mapping.txt.

 This API is split into two pieces.  Part I describes the API and the
 corresponding pci_ API.  Part II describes the extensions to the API
--

-- 
1.6.0

--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

vibi sreenivasan | 1 Jun 2009 10:19

[PATCH 1/5]:Removed reference to non-existing file Documentation/PCI/PCI-DMA-mapping.txt


 File Documentation/PCI/PCI-DMA-mapping.txt does not exist.
 Documentation/DMA-mapping.txt contains DMA Mapping details

Signed-off-by: vibi sreenivasan <vibi_sreenivasan <at> cms.com>

diff --git a/Documentation/block/biodoc.txt b/Documentation/block/biodoc.txt
index 6fab97e..8d2158a 100644
--- a/Documentation/block/biodoc.txt
+++ b/Documentation/block/biodoc.txt
 <at>  <at>  -186,7 +186,7  <at>  <at>  a virtual address mapping (unlike the earlier scheme of virtual address
 do not have a corresponding kernel virtual address space mapping) and
 low-memory pages.

-Note: Please refer to Documentation/PCI/PCI-DMA-mapping.txt for a discussion
+Note: Please refer to Documentation/DMA-mapping.txt for a discussion
 on PCI high mem DMA aspects and mapping of scatter gather lists, and support
 for 64 bit PCI.

--

-- 
1.6.0

--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

vibi sreenivasan | 1 Jun 2009 10:24

[PATCH 4/5]:Removed reference to non-existing file Documentation/PCI/PCI-DMA-mapping.txt

    File Documentation/PCI/PCI-DMA-mapping.txt does not exist.
    Documentation/DMA-mapping.txt contains DMA Mapping details

Signed-off-by: vibi sreenivasan <vibi_sreenivasan <at> cms.com>

diff --git a/Documentation/usb/dma.txt b/Documentation/usb/dma.txt
index cfdcd16..77f841b 100644
--- a/Documentation/usb/dma.txt
+++ b/Documentation/usb/dma.txt
 <at>  <at>  -7,7 +7,7  <at>  <at>  API OVERVIEW

 The big picture is that USB drivers can continue to ignore most DMA issues,
 though they still must provide DMA-ready buffers (see
-Documentation/PCI/PCI-DMA-mapping.txt).  That's how they've worked through
+Documentation/DMA-mapping.txt).  That's how they've worked through
 the 2.4 (and earlier) kernels.

 OR:  they can now be DMA-aware.
 <at>  <at>  -63,7 +63,7  <at>  <at>  and effects like cache-trashing can impose subtle penalties.
   force a consistent memory access ordering by using memory barriers.  It's
   not using a streaming DMA mapping, so it's good for small transfers on
   systems where the I/O would otherwise thrash an IOMMU mapping.  (See
-  Documentation/PCI/PCI-DMA-mapping.txt for definitions of "coherent" and
+  Documentation/DMA-mapping.txt for definitions of "coherent" and
   "streaming" DMA mappings.)

   Asking for 1/Nth of a page (as well as asking for N pages) is reasonably
 <at>  <at>  -94,7 +94,7  <at>  <at>  WORKING WITH EXISTING BUFFERS
 Existing buffers aren't usable for DMA without first being mapped into the
 DMA address space of the device.  However, most buffers passed to your
(Continue reading)

vibi sreenivasan | 1 Jun 2009 10:25

[PATCH 5/5]:Removed reference to non-existing file Documentation/PCI/PCI-DMA-mapping.txt

    File Documentation/PCI/PCI-DMA-mapping.txt does not exist.
    Documentation/DMA-mapping.txt contains DMA Mapping details

Signed-off-by: vibi sreenivasan <vibi_sreenivasan <at> cms.com>

diff --git a/Documentation/IO-mapping.txt b/Documentation/IO-mapping.txt
index 78a4406..52ec6e4 100644
--- a/Documentation/IO-mapping.txt
+++ b/Documentation/IO-mapping.txt
 <at>  <at>  -1,6 +1,6  <at>  <at> 
 [ NOTE: The virt_to_bus() and bus_to_virt() functions have been
 	superseded by the functionality provided by the PCI DMA interface
-	(see Documentation/PCI/PCI-DMA-mapping.txt).  They continue
+	(see Documentation/DMA-mapping.txt).  They continue
 	to be documented below for historical purposes, but new code
 	must not use them. --davidm 00/12/12 ]

--

-- 
1.6.0

--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

David Howells | 1 Jun 2009 10:44
Picon
Favicon

Re: [PATCH 3/5]:Removed reference to non-existing file Documentation/PCI/PCI-DMA-mapping.txt

vibi sreenivasan <vibi_sreenivasan <at> cms.com> wrote:

>     File Documentation/PCI/PCI-DMA-mapping.txt does not exist.
>     Documentation/DMA-mapping.txt contains DMA Mapping details
> 
> Signed-off-by: vibi sreenivasan <vibi_sreenivasan <at> cms.com>

Acked-by: David Howells <dhowells <at> redhat.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Linus Turdvals | 1 Jun 2009 20:41
Picon

[PATCH] Update security bugs policy in Documentation/SecurityBugs

This patch updates the security bugs handling policy in
Documentation/SecurityBugs, to match with the current practices
and philosophy of the Linux kernel security team.

Please apply to avoid the masturbating monkeys in the security
circus from reporting misleading bugs with no security impact
whatsoever.

Signed-off-by: Linus Turdvalds <turdvals <at> gmail.com>

--- tricky/Documentation/SecurityBugs
+++ honest/Documentation/SecurityBugs
 <at>  <at>  -1,7 +1,20  <at>  <at> 
 Linux kernel developers take security very seriously.  As such, we'd
 like to know when a security bug is found so that it can be fixed and
-disclosed as quickly as possible.  Please report security bugs to the
-Linux kernel security team.
+disclosed as quickly as possible.
+
+Unfortunately, since we do not believe in security bugs, your report
+could be classified as a reliability or performance problem. In such
+cases we will still fix the issue, but no specific disclosure will
+follow. Shall the reporter feel tempted to find references to said
+fix, he will require substantial amounts of time to walk through
+the commit logs in the affected git tree.
+
+Please report security bugs to the Linux kernel security team. We
+will provide the information to select members of the vendor-sec
+mailing list and Red Hat employees. The Linux kernel security team
+does not take any responsibility if said information is leaked or
(Continue reading)

Greg KH | 1 Jun 2009 22:58
Gravatar

Re: [Security] [PATCH] Update security bugs policy in Documentation/SecurityBugs

On Mon, Jun 01, 2009 at 08:41:16PM +0200, Linus Turdvals wrote:
> This patch updates the security bugs handling policy in
> Documentation/SecurityBugs, to match with the current practices
> and philosophy of the Linux kernel security team.
> 
> Please apply to avoid the masturbating monkeys in the security
> circus from reporting misleading bugs with no security impact
> whatsoever.
> 
> Signed-off-by: Linus Turdvalds <turdvals <at> gmail.com>

*plonk*

Gmane