<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux.git/drivers/staging/rtl8192e, branch v4.19.63</title>
<subtitle>Clone of https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git</subtitle>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/'/>
<entry>
<title>staging: rtl8192e: ieee80211: Convert from ahash to shash</title>
<updated>2018-07-29T08:05:23+00:00</updated>
<author>
<name>Kees Cook</name>
<email>keescook@chromium.org</email>
</author>
<published>2018-07-24T16:49:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=bd757b5d2e0b30939ba63b80af7355fe755fe2da'/>
<id>bd757b5d2e0b30939ba63b80af7355fe755fe2da</id>
<content type='text'>
This is an identical change to the wireless/lib80211 of the same name.
In preparing to remove all stack VLA usage from the kernel[1], this
removes the discouraged use of AHASH_REQUEST_ON_STACK in favor of
the smaller SHASH_DESC_ON_STACK by converting from ahash-wrapped-shash
to direct shash. By removing a layer of indirection this both improves
performance and reduces stack usage. The stack allocation will be made
a fixed size in a later patch to the crypto subsystem.

[1] https://lkml.kernel.org/r/CA+55aFzCG-zNmZwX4A2FQpadafLfEzK6CC=qPXydAacU1RqZWA@mail.gmail.com

Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is an identical change to the wireless/lib80211 of the same name.
In preparing to remove all stack VLA usage from the kernel[1], this
removes the discouraged use of AHASH_REQUEST_ON_STACK in favor of
the smaller SHASH_DESC_ON_STACK by converting from ahash-wrapped-shash
to direct shash. By removing a layer of indirection this both improves
performance and reduces stack usage. The stack allocation will be made
a fixed size in a later patch to the crypto subsystem.

[1] https://lkml.kernel.org/r/CA+55aFzCG-zNmZwX4A2FQpadafLfEzK6CC=qPXydAacU1RqZWA@mail.gmail.com

Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Staging:rtl8192e Cleanup comparison to NULL</title>
<updated>2018-06-26T03:47:29+00:00</updated>
<author>
<name>Janani Sankara Babu</name>
<email>jananis37@gmail.com</email>
</author>
<published>2018-06-18T16:05:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=997e66741413a304e3337dd0f904e54ed50b3cbe'/>
<id>997e66741413a304e3337dd0f904e54ed50b3cbe</id>
<content type='text'>
This patch replaces the comparison of var to NULL with !var

Signed-off-by: Janani Sankara Babu &lt;jananis37@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch replaces the comparison of var to NULL with !var

Signed-off-by: Janani Sankara Babu &lt;jananis37@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Staging:rtl8192e Fix Comparison to true is error prone</title>
<updated>2018-06-26T03:47:29+00:00</updated>
<author>
<name>Janani Sankara Babu</name>
<email>jananis37@gmail.com</email>
</author>
<published>2018-06-18T16:05:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=4eff3e9d971e75cc2f822596b842e2af181986a1'/>
<id>4eff3e9d971e75cc2f822596b842e2af181986a1</id>
<content type='text'>
This patch removes the comaprison to bool value in the code

Signed-off-by: Janani Sankara Babu &lt;jananis37@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch removes the comaprison to bool value in the code

Signed-off-by: Janani Sankara Babu &lt;jananis37@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Staging:rtl8192e Fix Comparison to False is error prone</title>
<updated>2018-06-26T03:47:29+00:00</updated>
<author>
<name>Janani Sankara Babu</name>
<email>jananis37@gmail.com</email>
</author>
<published>2018-06-18T16:05:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=6b6da6228c646d00567a631bfe7ee10ce61ba50b'/>
<id>6b6da6228c646d00567a631bfe7ee10ce61ba50b</id>
<content type='text'>
This patch removes comparison to False and boolean values in the code
which can be written as !var

Signed-off-by: Janani Sankara Babu &lt;jananis37@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch removes comparison to False and boolean values in the code
which can be written as !var

Signed-off-by: Janani Sankara Babu &lt;jananis37@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8192e: rtllib_tx: fix spelling issue.</title>
<updated>2018-05-25T16:44:14+00:00</updated>
<author>
<name>Davide Spataro</name>
<email>davide90.spataro@gmail.com</email>
</author>
<published>2018-05-21T20:48:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=67d412e44df5850522b7f9c2734e1c84ff89eaf7'/>
<id>67d412e44df5850522b7f9c2734e1c84ff89eaf7</id>
<content type='text'>
Fix a spelling problem. Issue found by checkpatch.pl.

Signed-off-by: Davide Spataro &lt;davide90.spataro@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix a spelling problem. Issue found by checkpatch.pl.

Signed-off-by: Davide Spataro &lt;davide90.spataro@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8192e: Fixed coding style around a plus sign</title>
<updated>2018-04-23T13:51:34+00:00</updated>
<author>
<name>Joao Dalben</name>
<email>jhdalben@gmail.com</email>
</author>
<published>2018-04-03T23:36:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=8263292ebcfb22cd690058e16ddffdeee0ae1f61'/>
<id>8263292ebcfb22cd690058e16ddffdeee0ae1f61</id>
<content type='text'>
Added blank spaces between a plus sign in order to standardize the coding
style.

Signed-off-by: Joao Dalben &lt;jhdalben@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added blank spaces between a plus sign in order to standardize the coding
style.

Signed-off-by: Joao Dalben &lt;jhdalben@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>drivers: staging: rtl8192e: fixed a space coding style issue</title>
<updated>2018-03-29T09:54:38+00:00</updated>
<author>
<name>Rene Hickersberger</name>
<email>Rene.Hickersberger@gmx.at</email>
</author>
<published>2018-03-27T16:14:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=de9c06518cf1601a51ea561b9d8406f79475b4fc'/>
<id>de9c06518cf1601a51ea561b9d8406f79475b4fc</id>
<content type='text'>
There was a weird space before the struct which is now removed.

Signed-off-by: Rene Hickersberger &lt;Rene.Hickersberger@gmx.at&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There was a weird space before the struct which is now removed.

Signed-off-by: Rene Hickersberger &lt;Rene.Hickersberger@gmx.at&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8192e: Add spaces around operators.</title>
<updated>2018-03-06T12:07:48+00:00</updated>
<author>
<name>Dafna Hirschfeld</name>
<email>dafna3@gmail.com</email>
</author>
<published>2018-03-02T13:09:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=5ea2d82035fce73ca0d2cb8e3868fc738e7a2a90'/>
<id>5ea2d82035fce73ca0d2cb8e3868fc738e7a2a90</id>
<content type='text'>
Add spaces around arithmetic and bitwise operators to improve
readability of the code.
Issues found with checkpatch.pl

Signed-off-by: Dafna Hirschfeld &lt;dafna3@gmail.com&gt;
Acked-by: Julia Lawall &lt;julia.lawall@lip6.fr&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add spaces around arithmetic and bitwise operators to improve
readability of the code.
Issues found with checkpatch.pl

Signed-off-by: Dafna Hirschfeld &lt;dafna3@gmail.com&gt;
Acked-by: Julia Lawall &lt;julia.lawall@lip6.fr&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8192e: Remove unnecessary parentheses</title>
<updated>2018-03-06T12:07:48+00:00</updated>
<author>
<name>Dafna Hirschfeld</name>
<email>dafna3@gmail.com</email>
</author>
<published>2018-03-02T13:09:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=01808309495e22b559ca854014b507e89a49cddb'/>
<id>01808309495e22b559ca854014b507e89a49cddb</id>
<content type='text'>
Remove unnecessary parentheses between 'address-of' operators
and a struct members.
Issues found with checkpatch.pl

Signed-off-by: Dafna Hirschfeld &lt;dafna3@gmail.com&gt;
Acked-by: Julia Lawall &lt;julia.lawall@lip6.fr&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove unnecessary parentheses between 'address-of' operators
and a struct members.
Issues found with checkpatch.pl

Signed-off-by: Dafna Hirschfeld &lt;dafna3@gmail.com&gt;
Acked-by: Julia Lawall &lt;julia.lawall@lip6.fr&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8192e: Fix issues regarding blank lines</title>
<updated>2018-03-06T12:07:48+00:00</updated>
<author>
<name>Dafna Hirschfeld</name>
<email>dafna3@gmail.com</email>
</author>
<published>2018-03-02T13:09:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=330d7c503b52b4ef8abcbbd1294f6d7f754b01bc'/>
<id>330d7c503b52b4ef8abcbbd1294f6d7f754b01bc</id>
<content type='text'>
Fix multiple blank lines and blank lines after braces.
Issues found with checkpatch.pl

Signed-off-by: Dafna Hirschfeld &lt;dafna3@gmail.com&gt;
Acked-by: Julia Lawall &lt;julia.lawall@lip6.fr&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix multiple blank lines and blank lines after braces.
Issues found with checkpatch.pl

Signed-off-by: Dafna Hirschfeld &lt;dafna3@gmail.com&gt;
Acked-by: Julia Lawall &lt;julia.lawall@lip6.fr&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
</feed>
