Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wifi: QT SVD fixes #15555

Merged
merged 8 commits into from
Jun 3, 2024
Merged

wifi: QT SVD fixes #15555

merged 8 commits into from
Jun 3, 2024

Commits on May 31, 2024

  1. modules: wfa-qt: Fix memory leak

    The memory for format is leaked. Instead of fixing the leak, move away
    from malloc based implementation it is overkill for logging and also
    protect the prints using a mutex, this should have been done even with
    malloc/free for thread safety (apart from inherent malloc/free thread
    safety).
    
    Fixes SHEL-2274.
    
    Signed-off-by: Chaitanya Tata <[email protected]>
    krish2718 authored and krga2022 committed May 31, 2024
    Configuration menu
    Copy the full SHA
    6d33a22 View commit details
    Browse the repository at this point in the history
  2. modules: wfa-qt: Fix handling failures

    The response handler doesn't check for failures and they will be
    ignored, add a check for failures and return failure.
    
    Signed-off-by: Chaitanya Tata <[email protected]>
    krish2718 authored and krga2022 committed May 31, 2024
    Configuration menu
    Copy the full SHA
    126793c View commit details
    Browse the repository at this point in the history
  3. samples: wifi: wfa_qt_app: Decrease the libc heap

    Now that the memory leak has been fixed, we don't need 100K heap for QT
    app.
    
    Signed-off-by: Chaitanya Tata <[email protected]>
    krish2718 authored and krga2022 committed May 31, 2024
    Configuration menu
    Copy the full SHA
    3ad22eb View commit details
    Browse the repository at this point in the history
  4. manifest: sdk-wfa-qt: Pull fix for heap corruption

    Fixes heap corruption seen in SVD test suites.
    
    Signed-off-by: Chaitanya Tata <[email protected]>
    krish2718 authored and krga2022 committed May 31, 2024
    Configuration menu
    Copy the full SHA
    32da4af View commit details
    Browse the repository at this point in the history
  5. modules: wfa-qt: Fix POSIX conflict

    WPA supplicant now depends on POSIX, so, remove this dependency to avoid
    conflict.
    
    Signed-off-by: Chaitanya Tata <[email protected]>
    krish2718 authored and krga2022 committed May 31, 2024
    Configuration menu
    Copy the full SHA
    c2edf63 View commit details
    Browse the repository at this point in the history
  6. modules: wfa-qt: Fix compilation error

    Latest Zephyr has modified the data structure.
    
    Signed-off-by: Chaitanya Tata <[email protected]>
    krish2718 authored and krga2022 committed May 31, 2024
    Configuration menu
    Copy the full SHA
    1449d17 View commit details
    Browse the repository at this point in the history
  7. modules: wfa-qt: Log error string

    Displaying error message without reason is useless.
    
    Signed-off-by: Chaitanya Tata <[email protected]>
    krish2718 authored and krga2022 committed May 31, 2024
    Configuration menu
    Copy the full SHA
    64c8ca4 View commit details
    Browse the repository at this point in the history
  8. samples: wifi: wfa_qt_app: Increase sockets

    QT along with hostap needs more FDs, else socket initialization will
    fail.
    
    Signed-off-by: Chaitanya Tata <[email protected]>
    krish2718 authored and krga2022 committed May 31, 2024
    Configuration menu
    Copy the full SHA
    53153ed View commit details
    Browse the repository at this point in the history