<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux.git/drivers/staging/p9auth, branch v2.6.30</title>
<subtitle>Linux kernel source tree</subtitle>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/'/>
<entry>
<title>Staging: p9auth: clean up #includes</title>
<updated>2009-04-03T21:54:24+00:00</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-02-25T04:37:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=2418a628ff9d1cfc4fecd9899f915326ff6e7b96'/>
<id>2418a628ff9d1cfc4fecd9899f915326ff6e7b96</id>
<content type='text'>
Not all of these files needed to be included, clean up the list.

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Not all of these files needed to be included, clean up the list.

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: p9auth: use kzalloc</title>
<updated>2009-04-03T21:54:24+00:00</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-02-25T04:31:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=6d0d63bd7a9c0a6373c7759cb55580b806269dae'/>
<id>6d0d63bd7a9c0a6373c7759cb55580b806269dae</id>
<content type='text'>
It's nicer than doing kmalloc/memset.

Also check the return value of all allocations, one was previously not
being checked properly.

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's nicer than doing kmalloc/memset.

Also check the return value of all allocations, one was previously not
being checked properly.

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: p9auth: fix up sparse warnings</title>
<updated>2009-04-03T21:54:23+00:00</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-02-25T04:25:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=0f386e2b4c6109164e82277513a9570fc9ec644c'/>
<id>0f386e2b4c6109164e82277513a9570fc9ec644c</id>
<content type='text'>
Everything needs to be static, as sparse complains and you don't want to
polute the global kernel symbol namespace.  So mark everything as such
and move one function around to prevent a forward declaration from being
needed.

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Everything needs to be static, as sparse complains and you don't want to
polute the global kernel symbol namespace.  So mark everything as such
and move one function around to prevent a forward declaration from being
needed.

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: p9auth: fix up codingstyle issues</title>
<updated>2009-04-03T21:54:23+00:00</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-02-25T04:21:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=77dc1139f4a125d46e03fdbb3ac8ab8737ab67d6'/>
<id>77dc1139f4a125d46e03fdbb3ac8ab8737ab67d6</id>
<content type='text'>
This fixes up a number of scripts/codingstyle.pl warnings and errors

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes up a number of scripts/codingstyle.pl warnings and errors

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: p9auth: remove unneeded header file</title>
<updated>2009-04-03T21:54:23+00:00</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-02-25T04:11:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=4bf0438332d5173836fdc2d6471fec526d0a14a8'/>
<id>4bf0438332d5173836fdc2d6471fec526d0a14a8</id>
<content type='text'>
The p9auth.h file is not needed, move the stuff into p9auth.c file and
delete it.

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The p9auth.h file is not needed, move the stuff into p9auth.c file and
delete it.

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: p9auth: fix dependency/build error</title>
<updated>2009-04-03T21:54:23+00:00</updated>
<author>
<name>Randy Dunlap</name>
<email>randy.dunlap@oracle.com</email>
</author>
<published>2009-03-10T18:59:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=9752ef46c6d32b7ccf10b874f00e433844db2b1a'/>
<id>9752ef46c6d32b7ccf10b874f00e433844db2b1a</id>
<content type='text'>
Fix p9auth dependency/build failure.  It needs to depend on
CRYPTO.

p9auth.c:(.text+0x107297): undefined reference to `crypto_alloc_base'
p9auth.c:(.text+0x1073d4): undefined reference to `crypto_destroy_tfm'

Signed-off-by: Randy Dunlap &lt;randy.dunlap@oracle.com&gt;
Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix p9auth dependency/build failure.  It needs to depend on
CRYPTO.

p9auth.c:(.text+0x107297): undefined reference to `crypto_alloc_base'
p9auth.c:(.text+0x1073d4): undefined reference to `crypto_destroy_tfm'

Signed-off-by: Randy Dunlap &lt;randy.dunlap@oracle.com&gt;
Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: p9auth: add to the kernel build</title>
<updated>2009-04-03T21:54:23+00:00</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-02-25T04:08:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=00db8a8ecc91abeb46d1128a788a194018c51e77'/>
<id>00db8a8ecc91abeb46d1128a788a194018c51e77</id>
<content type='text'>
This adds the p9auth code to the kernel build

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds the p9auth code to the kernel build

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: p9auth: fix credential logic</title>
<updated>2009-04-03T21:54:23+00:00</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-02-25T04:06:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=5dba0826999683fe39aa8b49480b0e953afd117a'/>
<id>5dba0826999683fe39aa8b49480b0e953afd117a</id>
<content type='text'>
current-&gt;uid is no longer allowed in the 2.6.29 kernel, so use
the proper credential api to be able to alter the uid and euid values.

Note, this now builds properly, hopefully still works properly, would be
good for someone to test it out...

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
current-&gt;uid is no longer allowed in the 2.6.29 kernel, so use
the proper credential api to be able to alter the uid and euid values.

Note, this now builds properly, hopefully still works properly, would be
good for someone to test it out...

Cc: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: add p9auth driver</title>
<updated>2009-04-03T21:54:23+00:00</updated>
<author>
<name>Ashwin Ganti</name>
<email>ashwin.ganti@gmail.com</email>
</author>
<published>2009-02-25T03:48:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=55643171de7ba429fbf2cb72fb1f2c6f2df0dcf3'/>
<id>55643171de7ba429fbf2cb72fb1f2c6f2df0dcf3</id>
<content type='text'>
This is a driver that adds Plan 9 style capability device
implementation.

From: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a driver that adds Plan 9 style capability device
implementation.

From: Ashwin Ganti &lt;ashwin.ganti@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
</feed>
