-
Notifications
You must be signed in to change notification settings - Fork 59
add debug info in multiple-pipeline-playback/capture to root cause #472 #516
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
Closed
Closed
Changes from all commits
Commits
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 hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -60,8 +60,6 @@ DEV_LST['playback']='/dev/zero' | |
| APP_LST['capture']='arecord' | ||
| DEV_LST['capture']='/dev/null' | ||
|
|
||
| tmp_count=$max_count | ||
|
|
||
| # define for load pipeline | ||
| func_run_pipeline_with_type() | ||
| { | ||
|
|
@@ -92,21 +90,25 @@ func_run_pipeline_with_type() | |
| done | ||
| } | ||
|
|
||
| func_error_exit() | ||
| check_running_pipeline_count() | ||
| { | ||
| dloge "$*" | ||
| pgrep -a aplay | ||
| pgrep -a arecord | ||
| pkill -9 aplay | ||
| pkill -9 arecord | ||
| exit 1 | ||
| arecord_count=$(pidof arecord | wc -w) | ||
| dlogi "$arecord_count capture process is running" | ||
| aplay_count=$(pidof aplay | wc -w) | ||
| dlogi "$aplay_count playback process is running" | ||
| overall_count=$((arecord_count + aplay_count)) | ||
| [[ $overall_count -eq $max_count ]] || | ||
| func_error_exit "$max_count pipelines started, but only $overall_count pipelines detected" | ||
| } | ||
|
|
||
| for i in $(seq 1 $loop_cnt) | ||
| do | ||
| dlogi "===== Testing: (Loop: $i/$loop_cnt) =====" | ||
| # clean up dmesg | ||
| sudo dmesg -C | ||
| # this variable is modified in func_run_pipeline_with_type, | ||
| # need to reassign at every iteration | ||
| tmp_count=$max_count | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. use local for the tmp_count if you do not want it to be used outside. |
||
|
|
||
| # start capture: | ||
| func_run_pipeline_with_type "playback" | ||
|
|
@@ -117,11 +119,8 @@ do | |
|
|
||
| # check all refer capture pipeline status | ||
| # 1. check process count: | ||
| pcount=$(pidof arecord|wc -w) | ||
| tmp_count=$(expr $tmp_count + $pcount) | ||
| pcount=$(pidof aplay|wc -w) | ||
| tmp_count=$(expr $tmp_count + $pcount) | ||
| [[ $tmp_count -ne $max_count ]] && func_error_exit "Target pipeline count: $max_count, current process count: $tmp_count" | ||
| dlogi "checking started playback and capture process count" | ||
| check_running_pipeline_count | ||
|
|
||
| # 2. check arecord process status | ||
| dlogi "checking pipeline status" | ||
|
|
@@ -134,12 +133,8 @@ do | |
| sleep ${OPT_VALUE_lst['w']} | ||
|
|
||
| # 3. check process count again: | ||
| tmp_count=0 | ||
| pcount=$(pidof arecord|wc -w) | ||
| tmp_count=$(expr $tmp_count + $pcount) | ||
| pcount=$(pidof aplay|wc -w) | ||
| tmp_count=$(expr $tmp_count + $pcount) | ||
| [[ $tmp_count -ne $max_count ]] && func_error_exit "Target pipeline count: $max_count, current process count: $tmp_count" | ||
| dlogi "checking existing playback and capture process count" | ||
| check_running_pipeline_count | ||
|
|
||
| # 4. check arecord process status | ||
| dlogi "checking pipeline again" | ||
|
|
||
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.
use
localfor theoverall_count