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

rpmsg_virtio: Move get RX buffer into receive loop and returned buffer kick to common location #585

Merged
merged 2 commits into from
May 16, 2024

Commits on May 13, 2024

  1. rpmsg_virtio: Move returned buffer kick to common location

    After returning a buffer we kick the other side. This is done after both
    call sites of the function that returns the buffer. Move this kick call
    into that function to reduce code duplication and prevent it from not
    being done after returning the buffer.
    
    Signed-off-by: Andrew Davis <afd@ti.com>
    glneo committed May 13, 2024
    Configuration menu
    Copy the full SHA
    edc8737 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. rpmsg_virtio: Move get RX buffer into receive loop

    This allows us to only need to call rpmsg_virtio_get_rx_buffer() once
    at the start of the loop and is easier to comprehend.
    
    Signed-off-by: Andrew Davis <afd@ti.com>
    glneo committed May 14, 2024
    Configuration menu
    Copy the full SHA
    df647fa View commit details
    Browse the repository at this point in the history