<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/linux.git, branch v2.6.19.6</title>
<subtitle>Linux Kernel
</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v2.6.19.6</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v2.6.19.6'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/'/>
<updated>2007-03-03T00:34:31Z</updated>
<entry>
<title>Linux 2.6.19.6</title>
<updated>2007-03-03T00:34:31Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2007-03-03T00:34:31Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=cc36d4a3308f1965f9409985ecbe64a2685d81fa'/>
<id>urn:sha1:cc36d4a3308f1965f9409985ecbe64a2685d81fa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>sky2: fix ram buffer allocation settings</title>
<updated>2007-03-03T00:32:46Z</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@linux-foundation.org</email>
</author>
<published>2007-02-27T01:18:39Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=074023e131b7ecba0f7d9ba43ba0df322fc8f129'/>
<id>urn:sha1:074023e131b7ecba0f7d9ba43ba0df322fc8f129</id>
<content type='text'>
Different chipsets have different amount of ram buffer (some have none),
so need to make sure that driver does proper setup for all cases from 0 on
to 48K, in units of 1K.

This is a backport of the code from 2.6.19 or later

Signed-off-by: Stephen Hemminger &lt;shemminger@linux-foundation.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;


</content>
</entry>
<entry>
<title>sky2: dont flush good pause frames</title>
<updated>2007-03-03T00:32:46Z</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@linux-foundation.org</email>
</author>
<published>2007-02-27T01:18:38Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=1df6a4c30fbd43d9c3baf0dcdb2c60af688f0803'/>
<id>urn:sha1:1df6a4c30fbd43d9c3baf0dcdb2c60af688f0803</id>
<content type='text'>
Don't mark pause frames as errors. This caused a bug that would
lockup transmitter, as well as all the other ports on a switch.

Signed-off-by: Stephen Hemminger &lt;shemminger@linux-foundation.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>sky2: transmit timeout deadlock</title>
<updated>2007-03-03T00:32:46Z</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@linux-foundation.org</email>
</author>
<published>2007-02-27T01:18:37Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=fead18b0e8a8ffc873482dee0e616d4d0d9592a6'/>
<id>urn:sha1:fead18b0e8a8ffc873482dee0e616d4d0d9592a6</id>
<content type='text'>
The code in transmit timeout incorrectly assumed that netif_tx_lock
was not set.

Signed-off-by: Stephen Hemminger &lt;shemminger@linux-foundation.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;


</content>
</entry>
<entry>
<title>sky2: kfree_skb with IRQ with netconsole</title>
<updated>2007-03-03T00:32:46Z</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@linux-foundation.org</email>
</author>
<published>2007-02-27T01:18:36Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=eecf18ffe65123882562c54e55fd2d5e54ad4fef'/>
<id>urn:sha1:eecf18ffe65123882562c54e55fd2d5e54ad4fef</id>
<content type='text'>
When using netconsole, it is possible for the driver to try and
free skb's with IRQ's disabled. This could cause problems if the skb
had a destructor function that didn't expect this. The documented semantics
is that skb-&gt;destructor callback happens in softirq.

Signed-off-by: Stephen Hemminger &lt;shemminger@linux-foundation.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>sky2: fix for NAPI with dual port boards</title>
<updated>2007-03-03T00:32:46Z</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@linux-foundation.org</email>
</author>
<published>2007-02-27T01:18:35Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=fe864ebed2a1e894552bb426bbb02a2e2c2f6878'/>
<id>urn:sha1:fe864ebed2a1e894552bb426bbb02a2e2c2f6878</id>
<content type='text'>
This driver uses port 0 to handle receives on both ports. So
the netif_poll_disable call in dev_close would end up stopping the
second port on dual port cards.

Signed-off-by: Stephen Hemminger &lt;shemminger@linux-foundation.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;


</content>
</entry>
<entry>
<title>sky2: pci config blocks phy power control</title>
<updated>2007-03-03T00:32:46Z</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@linux-foundation.org</email>
</author>
<published>2007-02-27T01:18:34Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=6c51946a6ee266a8861cecc8277f5b7009851738'/>
<id>urn:sha1:6c51946a6ee266a8861cecc8277f5b7009851738</id>
<content type='text'>
PHY power control won't work because writes to PCI config space
are not re-enabled.

Signed-off-by: Stephen Hemminger &lt;shemminger@linux-foundation.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;


</content>
</entry>
<entry>
<title>Missing critical phys_to_virt in lib/swiotlb.c</title>
<updated>2007-03-03T00:32:46Z</updated>
<author>
<name>David Moore</name>
<email>dcm@acm.org</email>
</author>
<published>2007-02-21T13:37:44Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=bcaaa45c3feb2fcc36a247011970d5026c286154'/>
<id>urn:sha1:bcaaa45c3feb2fcc36a247011970d5026c286154</id>
<content type='text'>
Adds missing call to phys_to_virt() in the
lib/swiotlb.c:swiotlb_sync_sg() function.  Without this change, a kernel
panic will always occur whenever a SWIOTLB bounce buffer from a
scatter-gather list gets synced.

Signed-off-by: David Moore &lt;dcm@acm.org&gt;
Signed-off-by: Stefan Richter &lt;stefanr@s5r6.in-berlin.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;


</content>
</entry>
<entry>
<title>hda-codec - Don't return error at initialization of modem codec</title>
<updated>2007-03-03T00:32:46Z</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2007-02-21T16:38:59Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=c19eb9e045471c2a32ed0a6e01f1351891995d3b'/>
<id>urn:sha1:c19eb9e045471c2a32ed0a6e01f1351891995d3b</id>
<content type='text'>
[ALSA] hda-codec - Don't return error at initialization of modem codec

Some modem codec seem to fail in the initialization, and this
stopped loading of the whole module although the audio is OK.
Since it's usually a non-fatal issue, the driver tries to proceed
to initialize now.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Jaroslav Kysela &lt;perex@suse.cz&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>USB: usbnet driver bugfix</title>
<updated>2007-03-03T00:32:45Z</updated>
<author>
<name>David Brownell</name>
<email>david-b@pacbell.net</email>
</author>
<published>2007-02-21T16:50:33Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=b51e94f32535bd24521a350c957b1bbac020d226'/>
<id>urn:sha1:b51e94f32535bd24521a350c957b1bbac020d226</id>
<content type='text'>
The attached fixes an oops in the usbnet driver. The same patch is
in 2.6.21-rc1, but that one has many whitespace changes. This is much
smaller.


Signed-off-by: David Brownell &lt;david-b@pacbell.net&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
</feed>
