<feed xmlns='http://www.w3.org/2005/Atom'>
<title>platform_hardware_qcom_wlan, branch android10-tests-release</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/'/>
<entry>
<title>Snap for 5519018 from bdf118c219179889f269d784eada3667176f4ec8 to qt-release</title>
<updated>2019-05-01T03:08:54+00:00</updated>
<author>
<name>android-build-team Robot</name>
<email>android-build-team-robot@google.com</email>
</author>
<published>2019-05-01T03:08:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/commit/?id=7c35cda29126d117950fa0af1e4283e1634325ba'/>
<id>7c35cda29126d117950fa0af1e4283e1634325ba</id>
<content type='text'>
Change-Id: I202cb3993acde150987fc924ca887028ccfe2a47
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I202cb3993acde150987fc924ca887028ccfe2a47
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Wifi-hal: Enable pktlog when verbose log on." into qt-dev</title>
<updated>2019-04-30T07:52:07+00:00</updated>
<author>
<name>TreeHugger Robot</name>
<email>treehugger-gerrit@google.com</email>
</author>
<published>2019-04-30T07:52:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/commit/?id=bdf118c219179889f269d784eada3667176f4ec8'/>
<id>bdf118c219179889f269d784eada3667176f4ec8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Snap for 5511022 from 35c34d329cef989f6cf881238f2613859a77fd54 to qt-release</title>
<updated>2019-04-27T23:11:59+00:00</updated>
<author>
<name>android-build-team Robot</name>
<email>android-build-team-robot@google.com</email>
</author>
<published>2019-04-27T23:11:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/commit/?id=cf7da11bd1314504cc465b94779ca14e7de075d7'/>
<id>cf7da11bd1314504cc465b94779ca14e7de075d7</id>
<content type='text'>
Change-Id: I42e792fdd143e98100bcb2c181d0fa1ec57bcecf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I42e792fdd143e98100bcb2c181d0fa1ec57bcecf
</pre>
</div>
</content>
</entry>
<entry>
<title>Wifi-hal: Enable pktlog when verbose log on.</title>
<updated>2019-04-25T09:11:47+00:00</updated>
<author>
<name>lesl</name>
<email>lesl@google.com</email>
</author>
<published>2019-04-25T09:11:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/commit/?id=cb31ca7758aa179a0e50fa738ed70164de0441a3'/>
<id>cb31ca7758aa179a0e50fa738ed70164de0441a3</id>
<content type='text'>
In current desgin, packet fate will start logging when log level change to
“VERBOSE_DEBUG_PROBLEM”. But in current design, no any use case will change log level to
“VERBOSE_DEBUG_PROBLEM”. Framework use “VERBOSE_REPRO_PROBLEM” when user turn on wifi
verbose logging in developer option. Modify pkt ring buffer check condition to VERBOSE_DEBUG_PROBLE
to enable pktlog with verbose on.

Bug:74360031
Test: Manual Test
Change-Id: I0d600797108055adafcedd4ac7664b3781c3b74c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In current desgin, packet fate will start logging when log level change to
“VERBOSE_DEBUG_PROBLEM”. But in current design, no any use case will change log level to
“VERBOSE_DEBUG_PROBLEM”. Framework use “VERBOSE_REPRO_PROBLEM” when user turn on wifi
verbose logging in developer option. Modify pkt ring buffer check condition to VERBOSE_DEBUG_PROBLE
to enable pktlog with verbose on.

Bug:74360031
Test: Manual Test
Change-Id: I0d600797108055adafcedd4ac7664b3781c3b74c
</pre>
</div>
</content>
</entry>
<entry>
<title>Wifi-Hal: Pass the address of the global variable to NL callback</title>
<updated>2019-04-19T11:46:51+00:00</updated>
<author>
<name>Ajit Vaishya</name>
<email>ajitv@codeaurora.org</email>
</author>
<published>2019-03-29T16:09:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/commit/?id=35c34d329cef989f6cf881238f2613859a77fd54'/>
<id>35c34d329cef989f6cf881238f2613859a77fd54</id>
<content type='text'>
Current implementation passes the address of a local variable to the
netlink control block callback, ending up to go out of scope if the
callback is invoked after the scope for the current function ends
(from where the registration happened), resulting in an invalid
memory access. Address this issue by having the respective variable
defined with a global scope.

Change-Id: Ied10a8f17f20326864f80ac40b0ceac6791f6cd1
CRs-Fixed: 2427930
Bug: 129092516
Test: Manual test
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Current implementation passes the address of a local variable to the
netlink control block callback, ending up to go out of scope if the
callback is invoked after the scope for the current function ends
(from where the registration happened), resulting in an invalid
memory access. Address this issue by having the respective variable
defined with a global scope.

Change-Id: Ied10a8f17f20326864f80ac40b0ceac6791f6cd1
CRs-Fixed: 2427930
Bug: 129092516
Test: Manual test
</pre>
</div>
</content>
</entry>
<entry>
<title>Snap for 5434517 from 3929c85d870259884a13c6efe3c05e6b97cae649 to qt-release</title>
<updated>2019-04-04T03:07:38+00:00</updated>
<author>
<name>android-build-team Robot</name>
<email>android-build-team-robot@google.com</email>
</author>
<published>2019-04-04T03:07:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/commit/?id=63eebfbdd0554b120f4b9aa95861936e3af06bee'/>
<id>63eebfbdd0554b120f4b9aa95861936e3af06bee</id>
<content type='text'>
Change-Id: I073958ba2871a63f1cd96c6f57c6886896022e39
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I073958ba2871a63f1cd96c6f57c6886896022e39
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "SAR: Add handling of WIFI_POWER_SCENARIO_ON_BODY_BT"</title>
<updated>2019-04-03T14:54:00+00:00</updated>
<author>
<name>Ahmed ElArabawy</name>
<email>arabawy@google.com</email>
</author>
<published>2019-04-03T14:54:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/commit/?id=3929c85d870259884a13c6efe3c05e6b97cae649'/>
<id>3929c85d870259884a13c6efe3c05e6b97cae649</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Snap for 5430508 from 275cf8ba9ecf957cc18c302c3555ddeb43b66c75 to qt-release</title>
<updated>2019-04-03T03:11:27+00:00</updated>
<author>
<name>android-build-team Robot</name>
<email>android-build-team-robot@google.com</email>
</author>
<published>2019-04-03T03:11:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/commit/?id=94bd954061561df0f8a6f328a08e93b1b6248679'/>
<id>94bd954061561df0f8a6f328a08e93b1b6248679</id>
<content type='text'>
Change-Id: Id94df69e087568cb9c8b582d93365b905600f0ce
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Id94df69e087568cb9c8b582d93365b905600f0ce
</pre>
</div>
</content>
</entry>
<entry>
<title>Wifi-Hal: Avoid infinite loop on pkt stats of V0 version</title>
<updated>2019-04-02T21:09:34+00:00</updated>
<author>
<name>Ajit Vaishya</name>
<email>ajitv@codeaurora.org</email>
</author>
<published>2019-03-26T17:15:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/commit/?id=e61d13ab7a63db5eb4d4ef58ee60ba9794f38e3a'/>
<id>e61d13ab7a63db5eb4d4ef58ee60ba9794f38e3a</id>
<content type='text'>
Currently when hardware version received as NULL string,
pkt_log sets to V0 version i.e. PKT_LOG_V0 and parsing of
packet stats done by decrementing specified length mention
in packet log header , in case of PKT_LOG_V0 this length is
decrementing which makes parsing stuck to infinite loop.
To overcome this, parsing length is decremented apart from V2
packet log version too.

CRs-Fixed: 2422931
Bug: 129272032
Bug: 118484168
Test: Connect STA to AP and play youtube.

Change-Id: I573a5158b97f2c2b1b59026a8ae14e23ffc8135f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently when hardware version received as NULL string,
pkt_log sets to V0 version i.e. PKT_LOG_V0 and parsing of
packet stats done by decrementing specified length mention
in packet log header , in case of PKT_LOG_V0 this length is
decrementing which makes parsing stuck to infinite loop.
To overcome this, parsing length is decremented apart from V2
packet log version too.

CRs-Fixed: 2422931
Bug: 129272032
Bug: 118484168
Test: Connect STA to AP and play youtube.

Change-Id: I573a5158b97f2c2b1b59026a8ae14e23ffc8135f
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Revert "Wifi-hal: RX and Per packet fate stats for new pkt log version V2""</title>
<updated>2019-04-02T21:09:13+00:00</updated>
<author>
<name>Srinivas Girigowda</name>
<email>quic_sgirigow@quicinc.com</email>
</author>
<published>2019-03-28T23:39:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_hardware_qcom_wlan/commit/?id=e526556d3194679797b70fe8ff16e8fccb4cf3f2'/>
<id>e526556d3194679797b70fe8ff16e8fccb4cf3f2</id>
<content type='text'>
This reverts commit 9584c413fae876e2883fc0e5a93a98df0f32d3ff.

Bug: 129272032
Bug: 118484168

Test: connect STA to AP and play youtube.

Change-Id: Id9396d04e6cd202867390dcb428a6177a8a89681
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 9584c413fae876e2883fc0e5a93a98df0f32d3ff.

Bug: 129272032
Bug: 118484168

Test: connect STA to AP and play youtube.

Change-Id: Id9396d04e6cd202867390dcb428a6177a8a89681
</pre>
</div>
</content>
</entry>
</feed>
