-
Notifications
You must be signed in to change notification settings - Fork 322
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
dma-trace: Fixes aimed to make the re-configuration robust and cleaner #4879
Closed
ujfalusi
wants to merge
4
commits into
thesofproject:main
from
ujfalusi:peter/pr/dtrace_init_fixes_01
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
d0b9b08
dma-trace: Simply return with if dma_trace_buffer_init() fails
ujfalusi af0e962
dma-trace: Re-structure the buffer allocation and initialization
ujfalusi 6652cab
dma-trace: Cancel the dtrace task before stopping the channel in reco…
ujfalusi 81aff7b
dma-trace: Fix memory leak with buffer allocation on dtrace re-config
ujfalusi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how can a memory leak happen? Is
start()
called without astop()
, because the latter does free the buffer? Isstop()
never called in such a case, just a repeatedstart()
? Maybe worth mentioning this in the commit messageThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lyakh, this PR kind of precedes the stop() from @ranj063.
But if you have old kernel that will not going to call it.
I think this is more like a safety net for the sake of completeness?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the record: it is
SOF_IPC_TRACE_DMA_FREE
and thedma_trace_disable()
for the trace stop which if it is called then stops/put the DMA channel and free up the buffer.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me check w/o this series tomorrow against the SOF clients version. I might be able just close this PR.