<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux-dev/drivers/staging/sxg, branch master</title>
<subtitle>Linux kernel development work - see feature branches</subtitle>
<id>https://git.zx2c4.com/linux-dev/atom/drivers/staging/sxg?h=master</id>
<link rel='self' href='https://git.zx2c4.com/linux-dev/atom/drivers/staging/sxg?h=master'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/'/>
<updated>2009-09-15T19:02:35Z</updated>
<entry>
<title>Staging: remove sxg driver</title>
<updated>2009-09-15T19:02:35Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-09-15T17:09:27Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=e9d599220b97e7d52311f6011c75ba0cfcb356fe'/>
<id>urn:sha1:e9d599220b97e7d52311f6011c75ba0cfcb356fe</id>
<content type='text'>
Unfortunatly, the upstream company has abandonded development of this
driver.  So it's best to just remove the driver from the tree.

Cc: Christopher Harrer &lt;charrer@alacritech.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: ARRAY_SIZE changes</title>
<updated>2009-09-15T19:02:06Z</updated>
<author>
<name>Stoyan Gaydarov</name>
<email>sgayda2@uiuc.edu</email>
</author>
<published>2009-07-22T03:02:27Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=b6ac161364eccce1bea4a23a9de395883e90d7ab'/>
<id>urn:sha1:b6ac161364eccce1bea4a23a9de395883e90d7ab</id>
<content type='text'>
These changes were a direct result of using a semantic patch
More information can be found at http://www.emn.fr/x-info/coccinelle/

Signed-off-by: Stoyan Gaydarov &lt;sgayda2@uiuc.edu&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>netdev: drivers should make ethtool_ops const</title>
<updated>2009-09-02T08:03:33Z</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@vyatta.com</email>
</author>
<published>2009-09-02T08:03:33Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=0fc0b732eaa38beb93a6fb62f77c7bd9622c76ec'/>
<id>urn:sha1:0fc0b732eaa38beb93a6fb62f77c7bd9622c76ec</id>
<content type='text'>
No need to put ethtool_ops in data, they should be const.

Signed-off-by: Stephen Hemminger &lt;shemminger@vyatta.com&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>Staging: sxg: Add missing __devexit_p()</title>
<updated>2009-06-19T18:00:35Z</updated>
<author>
<name>Jean Delvare</name>
<email>khali@linux-fr.org</email>
</author>
<published>2009-06-04T11:35:15Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=a970ff45c9228472fd9c3ea62357ea7a9cbc8ce3'/>
<id>urn:sha1:a970ff45c9228472fd9c3ea62357ea7a9cbc8ce3</id>
<content type='text'>
The remove function uses __devexit, so the .remove assignment needs
__devexit_p() to fix a build error with hotplug disabled.

Signed-off-by: Jean Delvare &lt;khali@linux-fr.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>Staging: sxg: replace __FUNCTION__ usages</title>
<updated>2009-06-19T18:00:35Z</updated>
<author>
<name>Alessio Igor Bogani</name>
<email>abogani@texware.it</email>
</author>
<published>2009-03-24T18:29:45Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=eb48d1f8f3a40f228969f3a54d97e677d4a0d135'/>
<id>urn:sha1:eb48d1f8f3a40f228969f3a54d97e677d4a0d135</id>
<content type='text'>
__FUNCTION__ is gcc-specific, use __func__

Signed-off-by: Alessio Igor Bogani &lt;abogani@texware.it&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>Staging: sxg: Fix leaks and checksum errors in transmit code path</title>
<updated>2009-04-17T18:06:31Z</updated>
<author>
<name>Mithlesh Thukral</name>
<email>mithlesh@linsyssoft.com</email>
</author>
<published>2009-03-25T10:21:49Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=b824adc9686fb9a6edca164c13107bfed3e41d4e'/>
<id>urn:sha1:b824adc9686fb9a6edca164c13107bfed3e41d4e</id>
<content type='text'>
Fix the transmit function for the following:
* Free XmtCmd in the error code path. This use to leak memory in
  error conditions.
* Do pci mapping after the checksum operations are over. They can
  reallocate the skb at a different location.
* Fix UDP checksum errors which were seen in wireshark

Signed-off-by: LinSysSoft Sahara Team &lt;saharaproj@linsyssoft.com&gt;
Signed-off-by: Mithlesh Thukral &lt;mithlesh@linsyssoft.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>Staging: sxg: Fix sleep in atomic context warning while loading driver</title>
<updated>2009-04-17T18:06:31Z</updated>
<author>
<name>Mithlesh Thukral</name>
<email>mithlesh@linsyssoft.com</email>
</author>
<published>2009-03-25T10:21:14Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=cc4b8dfc3ff32f890cd5de0ce22de44f124d0d05'/>
<id>urn:sha1:cc4b8dfc3ff32f890cd5de0ce22de44f124d0d05</id>
<content type='text'>
Leave a spinlock before calling request_irq(). request_irq() calls kmalloc
which can sleep. This was generating a warning dump while driver is loaded.

Signed-off-by: LinSysSoft Sahara Team &lt;saharaproj@linsyssoft.com&gt;
Signed-off-by: Mithlesh Thukral &lt;mithlesh@linsyssoft.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>Staging: sxg: Use correct queue_id for transmitting non-TCP packets</title>
<updated>2009-04-17T18:06:31Z</updated>
<author>
<name>Mithlesh Thukral</name>
<email>mithlesh@linsyssoft.com</email>
</author>
<published>2009-03-25T10:20:34Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=8d17e6ad8113f7534d978b1b3511f62637483fcc'/>
<id>urn:sha1:8d17e6ad8113f7534d978b1b3511f62637483fcc</id>
<content type='text'>
Use correct queue_id while transmitting non-TCP packets.
They should always use queue 0.

Signed-off-by: LinSysSoft Sahara Team &lt;saharaproj@linsyssoft.com&gt;
Signed-off-by: Mithlesh Thukral &lt;mithlesh@linsyssoft.com&gt;

</content>
</entry>
<entry>
<title>Staging: sxg: Fire watchdog timer at end of open routine to change the link</title>
<updated>2009-04-17T18:06:31Z</updated>
<author>
<name>Mithlesh Thukral</name>
<email>mithlesh@linsyssoft.com</email>
</author>
<published>2009-03-25T10:19:58Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=1f895130c0b0dd293b924b1c6cecac90a2e35dc6'/>
<id>urn:sha1:1f895130c0b0dd293b924b1c6cecac90a2e35dc6</id>
<content type='text'>
The watchdog timer which updates the link status was not fired at the
end of sxg_entry_open(). Add that.

Signed-off-by: LinSysSoft Sahara Team &lt;saharaproj@linsyssoft.com&gt;
Signed-off-by: Mithlesh Thukral &lt;mithlesh@linsyssoft.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>Staging: sxg: convert to netdev_ops</title>
<updated>2009-04-17T18:06:25Z</updated>
<author>
<name>Alexander Beregalov</name>
<email>a.beregalov@gmail.com</email>
</author>
<published>2009-03-29T15:30:46Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=7bea36118ee888f0428d22ea6a5560de33e6e739'/>
<id>urn:sha1:7bea36118ee888f0428d22ea6a5560de33e6e739</id>
<content type='text'>
Signed-off-by: Alexander Beregalov &lt;a.beregalov@gmail.com&gt;
Acked-by: David S. Miller &lt;davem@davemloft.net&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

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