<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general">
    <title>gmane.linux.ubuntu.devel.kernel.general</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27457"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27456"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27455"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27454"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27453"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27452"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27451"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27450"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27449"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27448"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27447"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27446"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27445"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27444"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27443"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27442"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27441"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27440"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27439"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27438"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27457">
    <title>[kteam-tools][PATCH] ktl: Git.current_branch() optimization</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27457</link>
    <description>&lt;pre&gt;Query 'git symbolic-ref HEAD' instead of iterating the 'git branch' list.

Also changed behavior if current_branch() is called in a detached HEAD state:
  before: returned the string "(no branch)"
  now: throws an exception ktl.git.GetError GitError("no current branch")

No existing caller depends on the old "(no branch)" behavior.

Signed-off-by: Kamal Mostafa &amp;lt;kamal&amp;lt; at &amp;gt;canonical.com&amp;gt;
---
 ktl/git.py | 15 ++++-----------
 1 file changed, 4 insertions(+), 11 deletions(-)

diff --git a/ktl/git.py b/ktl/git.py
index 9483ad4..7b18275 100644
--- a/ktl/git.py
+++ b/ktl/git.py
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -94,17 +94,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; class Git:
     #
     &amp;lt; at &amp;gt;classmethod
     def current_branch(cls):
-        retval = ""
-        status, result = run_command("git branch", cls.debug)
-        if status == 0:
-            for line in result:
-                if line != '' and line[0] == '*':
-                    retval = line[1:].strip()
-                    break
-        else:
-            raise GitError(result)
-
-        return retval
+        status, re&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T22:06:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27456">
    <title>[kteam-tools][PATCH] ktl: Git.config() allows 'git config' queries</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27456</link>
    <description>&lt;pre&gt;API interface to 'git config'.

Examples:

    print Git.config("user.email")
    kamal&amp;lt; at &amp;gt;canonical.com

    print Git.config("remote.origin.url")
    git://kernel.ubuntu.com/ubuntu/kteam-tools.git

Signed-off-by: Kamal Mostafa &amp;lt;kamal&amp;lt; at &amp;gt;canonical.com&amp;gt;
---
 ktl/git.py | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/ktl/git.py b/ktl/git.py
index 48abc99..9483ad4 100644
--- a/ktl/git.py
+++ b/ktl/git.py
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -39,6 +39,17 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; class Git:
 
         return retval
 
+    # config
+    #
+    # Return the requested git config value. E.g. config("user.email")
+    #
+    &amp;lt; at &amp;gt;classmethod
+    def config(cls, key):
+        status, result = run_command("git config %s" % key, cls.debug)
+        if status != 0:
+            raise GitError(result)
+        return result[0]
+
     # branches
     #
     # Return a list of all the git branches known to this git repository.
&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T22:06:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27455">
    <title>Mainline Build v3.9.4</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27455</link>
    <description>&lt;pre&gt;The mainline build for v3.9.4 is now complete and available at the URL
below:

    http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.9.4-saucy/

See the CHANGES file for the list of changes from the previous version:

    http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.9.4-saucy/CHANGES

Note that these builds do not contain any Ubuntu specific patches and
are not supported.

Kernel Team

&lt;/pre&gt;</description>
    <dc:creator>Mainline Builds</dc:creator>
    <dc:date>2013-05-24T20:15:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27454">
    <title>Mainline Build v3.4.47</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27454</link>
    <description>&lt;pre&gt;The mainline build for v3.4.47 is now complete and available at the URL
below:

    http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.4.47-quantal/

See the CHANGES file for the list of changes from the previous version:

    http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.4.47-quantal/CHANGES

Note that these builds do not contain any Ubuntu specific patches and
are not supported.

Kernel Team

&lt;/pre&gt;</description>
    <dc:creator>Mainline Builds</dc:creator>
    <dc:date>2013-05-24T19:45:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27453">
    <title>Mainline Build v3.0.80</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27453</link>
    <description>&lt;pre&gt;The mainline build for v3.0.80 is now complete and available at the URL
below:

    http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.0.80-oneiric/

See the CHANGES file for the list of changes from the previous version:

    http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.0.80-oneiric/CHANGES

Note that these builds do not contain any Ubuntu specific patches and
are not supported.

Kernel Team

&lt;/pre&gt;</description>
    <dc:creator>Mainline Builds</dc:creator>
    <dc:date>2013-05-24T19:30:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27452">
    <title>[ 3.8.y.z extended stable ] Patch "drivers/rtc/rtc-pcf2123.c: fix error return code in pcf2123_probe()" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27452</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    drivers/rtc/rtc-pcf2123.c: fix error return code in pcf2123_probe()

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From 4a5161635508be653d2f941ceb32c9a3b20d28ce Mon Sep 17 00:00:00 2001
From: Wei Yongjun &amp;lt;yongjun_wei&amp;lt; at &amp;gt;trendmicro.com.cn&amp;gt;
Date: Mon, 29 Apr 2013 16:21:07 -0700
Subject: drivers/rtc/rtc-pcf2123.c: fix error return code in pcf2123_probe()

commit 35623715818dfa720cccf99cd280dcbb4b78da23 upstream.

Fix to return -ENODEV in the chip not found error handling
case instead of 0, as done elsewhere in this function.

Signed-off-by: Wei Yongjun &amp;lt;yongjun_wei&amp;lt; at &amp;gt;trendmicro.com.cn&amp;gt;
Cc: &lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:37:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27451">
    <title>[ 3.8.y.z extended stable ] Patch "packet: tpacket_v3: do not trigger bug() on wrong header status" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27451</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    packet: tpacket_v3: do not trigger bug() on wrong header status

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From c24c57af34f44b4dae00fa248771cad55f019c3d Mon Sep 17 00:00:00 2001
From: Daniel Borkmann &amp;lt;dborkman&amp;lt; at &amp;gt;redhat.com&amp;gt;
Date: Fri, 3 May 2013 02:57:00 +0000
Subject: packet: tpacket_v3: do not trigger bug() on wrong header status

[ Upstream commit 8da3056c04bfc5f69f840ab038a38389e2de8189 ]

Jakub reported that it is fairly easy to trigger the BUG() macro
from user space with TPACKET_V3's RX_RING by just giving a wrong
header status flag. We already had a similar situation in co&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27450">
    <title>[ 3.8.y.z extended stable ] Patch "net: use netdev_features_t in skb_needs_linearize()" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27450</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    net: use netdev_features_t in skb_needs_linearize()

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From 95764f27aab524f7433987bc01d656eebb4b66bf Mon Sep 17 00:00:00 2001
From: Patrick McHardy &amp;lt;kaber&amp;lt; at &amp;gt;trash.net&amp;gt;
Date: Wed, 1 May 2013 22:36:49 +0000
Subject: net: use netdev_features_t in skb_needs_linearize()

[ Upstream commit 6708c9e5cc9bfc7c9a00ce9c0fdd0b1d4952b3d1 ]

Signed-off-by: Patrick McHardy &amp;lt;kaber&amp;lt; at &amp;gt;trash.net&amp;gt;
Signed-off-by: David S. Miller &amp;lt;davem&amp;lt; at &amp;gt;davemloft.net&amp;gt;
Signed-off-by: Kamal Mostafa &amp;lt;kamal&amp;lt; at &amp;gt;canonical.com&amp;gt;
---
 net/core/dev.c | 2 +-
 1 file changed, 1 insertion(+), 1 del&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27449">
    <title>[ 3.8.y.z extended stable ] Patch "watchdog: Fix race condition in registration code" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27449</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    watchdog: Fix race condition in registration code

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From bdd6bb3b6109788330bf149bd9d41990545beebf Mon Sep 17 00:00:00 2001
From: Guenter Roeck &amp;lt;linux&amp;lt; at &amp;gt;roeck-us.net&amp;gt;
Date: Fri, 5 Apr 2013 21:22:43 -0700
Subject: watchdog: Fix race condition in registration code

commit 60403f7a4d9368d187f79cba5e4672d01df37574 upstream.

A race condition exists when registering the first watchdog device.
Sequence of events:

- watchdog_register_device calls watchdog_dev_register
- watchdog_dev_register creates the watchdog misc device by calling
  misc_regis&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:37:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27448">
    <title>[ 3.8.y.z extended stable ] Patch "drm/i915: don't intel_crt_init on any ULT machines" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27448</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    drm/i915: don't intel_crt_init on any ULT machines

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From 1c1d6d5d6c89fa54403ee053141795ad71fd7ee0 Mon Sep 17 00:00:00 2001
From: Paulo Zanoni &amp;lt;paulo.r.zanoni&amp;lt; at &amp;gt;intel.com&amp;gt;
Date: Fri, 12 Apr 2013 18:16:53 -0300
Subject: drm/i915: don't intel_crt_init on any ULT machines

commit c40c0f5bd5b0f09e4386d2cf26c96c89c45ee539 upstream.

We may have DDI_BUF_CTL(PORT_A) configured with 2 lanes and still not
have CRT, so just check for !IS_ULT. This problem happened on a real
machine and resulted in a very ugly dmesg.

Signed-off-by: Paulo Zanoni &amp;lt;paul&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27447">
    <title>[ 3.8.y.z extended stable ] Patch "ipv6: do not clear pinet6 field" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27447</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    ipv6: do not clear pinet6 field

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From c86318e07265d34f5579defb6d76c3c37ae2e507 Mon Sep 17 00:00:00 2001
From: Eric Dumazet &amp;lt;edumazet&amp;lt; at &amp;gt;google.com&amp;gt;
Date: Thu, 9 May 2013 10:28:16 +0000
Subject: ipv6: do not clear pinet6 field

[ Upstream commit f77d602124d865c38705df7fa25c03de9c284ad2 ]

We have seen multiple NULL dereferences in __inet6_lookup_established()

After analysis, I found that inet6_sk() could be NULL while the
check for sk_family == AF_INET6 was true.

Bug was added in linux-2.6.29 when RCU lookups were introduced in UDP
and TCP&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27446">
    <title>[ 3.8.y.z extended stable ] Patch "macvlan: fix passthru mode race between dev removal and rx path" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27446</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    macvlan: fix passthru mode race between dev removal and rx path

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From 484017b9444e25ff3d6b8cab30ee1d5502c66d7a Mon Sep 17 00:00:00 2001
From: Jiri Pirko &amp;lt;jiri&amp;lt; at &amp;gt;resnulli.us&amp;gt;
Date: Thu, 9 May 2013 04:23:40 +0000
Subject: macvlan: fix passthru mode race between dev removal and rx path

[ Upstream commit 233c7df0821c4190e2d3f4be0f2ca0ab40a5ed8c ]

Currently, if macvlan in passthru mode is created and data are rxed and
you remove this device, following panic happens:

NULL pointer dereference at 0000000000000198
IP: [&amp;lt;ffffffffa0196058&amp;gt;] macvla&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27445">
    <title>[ 3.8.y.z extended stable ] Patch "3c59x: fix PCI resource management" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27445</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    3c59x: fix PCI resource management

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From a1bfebfeeeb948e1cf55d9c3d03ec3f3885cd8aa Mon Sep 17 00:00:00 2001
From: Sergei Shtylyov &amp;lt;sshtylyov&amp;lt; at &amp;gt;ru.mvista.com&amp;gt;
Date: Thu, 9 May 2013 11:14:07 +0000
Subject: 3c59x: fix PCI resource management

[ Upstream commit 4b264a1676e70dc656ba53a8cac690f2d4b65f4e ]

The driver wrongly claimed I/O ports at an address returned by pci_iomap() --
even if it was passed an MMIO address.  Fix this by claiming/releasing all PCI
resources in the PCI driver's probe()/remove() methods instead and get rid of
'must_fre&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27444">
    <title>[ 3.8.y.z extended stable ] Patch "pch_dma: Use GFP_ATOMIC because called from interrupt context" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27444</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    pch_dma: Use GFP_ATOMIC because called from interrupt context

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From 4e1c06e8d04140f1349156f4c23158f54e14b351 Mon Sep 17 00:00:00 2001
From: Tomoya MORINAGA &amp;lt;tomoya.rohm&amp;lt; at &amp;gt;gmail.com&amp;gt;
Date: Tue, 12 Feb 2013 11:25:33 +0900
Subject: pch_dma: Use GFP_ATOMIC because called from interrupt context

commit 5c1ef59168c485318e40ba485c1eba57d81d0faa upstream.

pdc_desc_get() is called from pd_prep_slave_sg, and the function is
called from interrupt context(e.g. Uart driver "pch_uart.c").
In fact, I saw kernel error message.
So, GFP_ATOMIC must be used&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:37:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27443">
    <title>[ 3.8.y.z extended stable ] Patch "ipv6, gre: do not leak info to user-space" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27443</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    ipv6,gre: do not leak info to user-space

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From 7d0652d41236018756a7818fbd8f1f746aa0b1d6 Mon Sep 17 00:00:00 2001
From: Amerigo Wang &amp;lt;amwang&amp;lt; at &amp;gt;redhat.com&amp;gt;
Date: Thu, 9 May 2013 21:56:37 +0000
Subject: ipv6,gre: do not leak info to user-space

[ Upstream commit 5dbd5068430b8bd1c19387d46d6c1a88b261257f ]

There is a hole in struct ip6_tnl_parm2, so we have to
zero the struct on stack before copying it to user-space.

Cc: David S. Miller &amp;lt;davem&amp;lt; at &amp;gt;davemloft.net&amp;gt;
Signed-off-by: Cong Wang &amp;lt;amwang&amp;lt; at &amp;gt;redhat.com&amp;gt;
Signed-off-by: David S. Miller &amp;lt;davem&amp;lt; at &amp;gt;da&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27442">
    <title>[ 3.8.y.z extended stable ] Patch "if_cablemodem.h: Add parenthesis around ioctl macros" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27442</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    if_cablemodem.h: Add parenthesis around ioctl macros

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From 92f96ed610ad3508f3d397b47bd39fa83eca6be4 Mon Sep 17 00:00:00 2001
From: Josh Boyer &amp;lt;jwboyer&amp;lt; at &amp;gt;redhat.com&amp;gt;
Date: Wed, 8 May 2013 09:45:47 +0000
Subject: if_cablemodem.h: Add parenthesis around ioctl macros

[ Upstream commit 4f924b2aa4d3cb30f07e57d6b608838edcbc0d88 ]

Protect the SIOCGCM* ioctl macros with parenthesis.

Reported-by: Paul Wouters &amp;lt;pwouters&amp;lt; at &amp;gt;redhat.com&amp;gt;
Signed-off-by: Josh Boyer &amp;lt;jwboyer&amp;lt; at &amp;gt;redhat.com&amp;gt;
Signed-off-by: David S. Miller &amp;lt;davem&amp;lt; at &amp;gt;davemloft.net&amp;gt;
Signed-off-by: Ka&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27441">
    <title>[ 3.8.y.z extended stable ] Patch "bridge: fix race with topology change timer" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27441</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    bridge: fix race with topology change timer

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From e42056419e11756ea979e538704bc1529cddfdfb Mon Sep 17 00:00:00 2001
From: stephen hemminger &amp;lt;stephen&amp;lt; at &amp;gt;networkplumber.org&amp;gt;
Date: Thu, 2 May 2013 14:23:28 +0000
Subject: bridge: fix race with topology change timer

[ Upstream commit 83401eb4990ff6af55aeed8f49681558544192e6 ]

A bridge should only send topology change notice if it is not
the root bridge. It is possible for message age timer to elect itself
as a new root bridge, and still have a topology change timer running
but waiting for brid&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27440">
    <title>[ 3.8.y.z extended stable ] Patch "3c59x: fix freeing nonexistent resource on driver unload" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27440</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    3c59x: fix freeing nonexistent resource on driver unload

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From 0b38cddcef89f19bff6f10f06d7492f34cfa925d Mon Sep 17 00:00:00 2001
From: Sergei Shtylyov &amp;lt;sergei.shtylyov&amp;lt; at &amp;gt;cogentembedded.com&amp;gt;
Date: Thu, 2 May 2013 11:10:22 +0000
Subject: 3c59x: fix freeing nonexistent resource on driver unload

[ Upstream commit c81400be716aa4c76f6ebf339ba94358dbbf6da6 ]

When unloading the driver that drives an EISA board, a message similar to the
following one is displayed:

Trying to free nonexistent resource &amp;lt;0000000000013000-000000000001301f&amp;gt;

Then an u&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27439">
    <title>[ 3.8.y.z extended stable ] Patch "net: vlan, ethtool: netdev_features_t is more than 32 bit" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27439</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    net: vlan,ethtool: netdev_features_t is more than 32 bit

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From 4ace94030726250d367f5e709e55faa6367b7fb2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B8rn=20Mork?= &amp;lt;bjorn&amp;lt; at &amp;gt;mork.no&amp;gt;
Date: Wed, 1 May 2013 23:06:42 +0000
Subject: net: vlan,ethtool: netdev_features_t is more than 32 bit
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

[ Upstream commit b29d3145183da4e07d4b570fa8acdd3ac4a5c572 ]

Signed-off-by: Bjørn Mork &amp;lt;bjorn&amp;lt; at &amp;gt;mork.no&amp;gt;
Signed-off-by: David S. Miller &amp;lt;davem&amp;lt; at &amp;gt;davemloft.net&amp;gt;
Signed-off&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:38:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27438">
    <title>[ 3.8.y.z extended stable ] Patch "net: tun: release the reference of tun device in tun_recvmsg" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27438</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    net: tun: release the reference of tun device in tun_recvmsg

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From ea895dbc54bc27cc1bdb9956b620983cd20fac47 Mon Sep 17 00:00:00 2001
From: Gao feng &amp;lt;gaofeng&amp;lt; at &amp;gt;cn.fujitsu.com&amp;gt;
Date: Wed, 24 Apr 2013 21:59:23 +0000
Subject: net: tun: release the reference of tun device in tun_recvmsg

[ Upstream commit 3811ae76bc84e5dc1a670ae10695f046b310bee1 ]

We forget to release the reference of tun device in tun_recvmsg.
bug introduced in commit 54f968d6efdbf7dec36faa44fc11f01b0e4d1990
(tuntap: move socket to tun_file)

Signed-off-by: Gao feng &amp;lt;gaofeng&amp;lt; at &amp;gt;&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:37:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27437">
    <title>[ 3.8.y.z extended stable ] Patch "tcp: reset timer after any SYNACK retransmit" has been added to staging queue</title>
    <link>http://permalink.gmane.org/gmane.linux.ubuntu.devel.kernel.general/27437</link>
    <description>&lt;pre&gt;This is a note to let you know that I have just added a patch titled

    tcp: reset timer after any SYNACK retransmit

to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree 
which can be found at:

 http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue

If you, or anyone else, feels it should not be added to this tree, please 
reply to this email.

For more information about the 3.8.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable

Thanks.
-Kamal

------

From c6bb76b5e686b95ea8c9559dc612e0a1c2836582 Mon Sep 17 00:00:00 2001
From: Yuchung Cheng &amp;lt;ycheng&amp;lt; at &amp;gt;google.com&amp;gt;
Date: Mon, 29 Apr 2013 08:44:51 +0000
Subject: tcp: reset timer after any SYNACK retransmit

[ Upstream commit cd75eff64dae8856afbf6ef0f0ca3c145465d8e0 ]

Linux immediately returns SYNACK on (spurious) SYN retransmits, but
keeps the SYNACK timer running independently. Thus the timer may
fire right after the SYNACK retransmit and causes a SYN-SYNACK
cross-fire burst.

Adopt the fast r&lt;/pre&gt;</description>
    <dc:creator>Kamal Mostafa</dc:creator>
    <dc:date>2013-05-24T17:37:59</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.linux.ubuntu.devel.kernel.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.linux.ubuntu.devel.kernel.general</link>
  </textinput>
</rdf:RDF>
