<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/linux.git/include/linux/ncp.h, branch v3.4.78</title>
<subtitle>Linux Kernel
</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v3.4.78</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v3.4.78'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/'/>
<updated>2010-08-23T04:15:39Z</updated>
<entry>
<title>header: fix broken headers for user space</title>
<updated>2010-08-23T04:15:39Z</updated>
<author>
<name>Changli Gao</name>
<email>xiaosuo@gmail.com</email>
</author>
<published>2010-08-22T17:25:05Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=09cd2b99c6cdd1e14e84c1febca2fb91e9f4e5ba'/>
<id>urn:sha1:09cd2b99c6cdd1e14e84c1febca2fb91e9f4e5ba</id>
<content type='text'>
__packed is only defined in kernel space, so we should use
__attribute__((packed)) for the code shared between kernel and user space.

Two __attribute() annotations are replaced with __attribute__() too.

Signed-off-by: Changli Gao &lt;xiaosuo@gmail.com&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>net: use __packed annotation</title>
<updated>2010-06-03T10:21:52Z</updated>
<author>
<name>Eric Dumazet</name>
<email>eric.dumazet@gmail.com</email>
</author>
<published>2010-06-03T10:21:52Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=bc10502dba37d3b210efd9f3867212298f13b78e'/>
<id>urn:sha1:bc10502dba37d3b210efd9f3867212298f13b78e</id>
<content type='text'>
cleanup patch.

Use new __packed annotation in net/ and include/
(except netfilter)

Signed-off-by: Eric Dumazet &lt;eric.dumazet@gmail.com&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>[PATCH] Eliminate __attribute__ ((packed)) warnings for gcc-4.1</title>
<updated>2006-01-09T04:14:07Z</updated>
<author>
<name>Jan Blunck</name>
<email>jblunck@suse.de</email>
</author>
<published>2006-01-08T09:05:07Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=6a878184c202395ea17212f111ab9ec4b5f6d6ee'/>
<id>urn:sha1:6a878184c202395ea17212f111ab9ec4b5f6d6ee</id>
<content type='text'>
Since version 4.1 the gcc is warning about ignored attributes. This patch is
using the equivalent attribute on the struct instead of on each of the
structure or union members.

GCC Manual:
  "Specifying Attributes of Types

   packed
    This attribute, attached to struct or union type definition, specifies
    that
    each member of the structure or union is placed to minimize the memory
    required. When attached to an enum definition, it indicates that the
    smallest integral type should be used.

    Specifying this attribute for struct and union types is equivalent to
    specifying the packed attribute on each of the structure or union
    members."

Signed-off-by: Jan Blunck &lt;jblunck@suse.de&gt;
Cc: Dave Jones &lt;davej@codemonkey.org.uk&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] ncpfs (6/7): trivial endianness annotations</title>
<updated>2004-10-06T00:53:50Z</updated>
<author>
<name>Alexander Viro</name>
<email>viro@www.linux.org.uk</email>
</author>
<published>2004-10-06T00:53:50Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=67a385f2976a6ddf91fda4107bba0e812326d72a'/>
<id>urn:sha1:67a385f2976a6ddf91fda4107bba0e812326d72a</id>
<content type='text'>
100% straightforward annotations - from gcc POV no code had been changed.

Signed-off-by: Al Viro &lt;viro@parcelfarce.linux.org.uk&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] ncpfs (1/7): constants sanitized</title>
<updated>2004-10-06T00:52:50Z</updated>
<author>
<name>Alexander Viro</name>
<email>viro@www.linux.org.uk</email>
</author>
<published>2004-10-06T00:52:50Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=c3d28db7b8fa9063523783f4ffa0b72f16801f8c'/>
<id>urn:sha1:c3d28db7b8fa9063523783f4ffa0b72f16801f8c</id>
<content type='text'>
That's the beginning of ncpfs endianness cleanup.
	* converted fixed-endian constants to little-endian (i.e. replaced
htons(0xCDAB) with cpu_to_le16(0xABCD), etc.).  These guys _are_ little-endian
and make much more sense that way, even aside of annotation issues.

Signed-off-by: Al Viro &lt;viro@parcelfarce.linux.org.uk&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>ncpfs: Proper handling of watchdog packets. </title>
<updated>2002-09-20T23:40:34Z</updated>
<author>
<name>Petr Vandrovec</name>
<email>vandrove@vc.cvut.cz</email>
</author>
<published>2002-09-20T23:40:34Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=32758c3b91a1766db61cdc82837fa1a17e128330'/>
<id>urn:sha1:32758c3b91a1766db61cdc82837fa1a17e128330</id>
<content type='text'>
ncpfs: Add support for packet signatures when using TCP transport.
</content>
</entry>
<entry>
<title>Utilize NFS extended attributes for storing file mode and rdev. Make sure that you</title>
<updated>2002-07-18T21:10:43Z</updated>
<author>
<name>Petr Vandrovec</name>
<email>vandrove@vc.cvut.cz</email>
</author>
<published>2002-07-18T21:10:43Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=0f51d45f9e734d02ebc2079d51bb48ae8330b63b'/>
<id>urn:sha1:0f51d45f9e734d02ebc2079d51bb48ae8330b63b</id>
<content type='text'>
use nodev,nosuid together with nfsextras if you do not trust server...
</content>
</entry>
<entry>
<title>Allow access to all 256 volumes from Netware server.</title>
<updated>2002-07-17T19:04:41Z</updated>
<author>
<name>Petr Vandrovec</name>
<email>vandrove@vc.cvut.cz</email>
</author>
<published>2002-07-17T19:04:41Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=39228ed9edd10ad02341cc8b4bdfaea4107ad6a4'/>
<id>urn:sha1:39228ed9edd10ad02341cc8b4bdfaea4107ad6a4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Import changeset</title>
<updated>2002-02-05T01:40:40Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@athlon.transmeta.com</email>
</author>
<published>2002-02-05T01:40:40Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=7a2deb32924142696b8174cdf9b38cd72a11fc96'/>
<id>urn:sha1:7a2deb32924142696b8174cdf9b38cd72a11fc96</id>
<content type='text'>
</content>
</entry>
</feed>
