• John Crispin's avatar
    ath11k: optimise ath11k_dp_tx_completion_handler · d0998eb8
    John Crispin authored
    the current code does 4 memcpys for each completion frame.
    1) duplicate the desc
    2 + 3) inside kfifo insertion
    4) kfifo remove
    
    The code simply drops the kfifo and uses a trivial ring buffer. This
    requires a single memcpy for insertion. There is no removal needed as
    we can simply use the inserted data for processing. As the code runs
    inside the NAPI context it is atomic and there is no need for most of
    the locking.
    Signed-off-by: default avatarJohn Crispin <john@phrozen.org>
    Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
    d0998eb8
hal_tx.h 2.09 KB