diff options
| author | sayli karnik <[email protected]> | 2017-02-20 22:40:28 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2017-03-06 09:17:01 +0100 |
| commit | 6796cd84610a56beb7d3fa2818989727e4f26550 (patch) | |
| tree | 199449c0227a231b167df6baf2b92f4568890c3c /tools/perf/scripts/python/event_analyzing_sample.py | |
| parent | fea3860d7d69b0a82e0b96617258ffaf0ff250d4 (diff) | |
staging: greybus: loopback_test: Fix open error path
Change array index from the loop bound variable to loop index.
If a poll file fails to open for any intermediate device, all poll files with
fds of devices from 0 upto that device must be closed in the open_poll_files()
function. The current code only closes the poll file with the most recent fd
allocated, and at times tries to close the same file multiple times.
Detected by coccinelle:
@@
expression arr,ex1,ex2;
@@
for(ex1 = 0; ex1 < ex2; ex1++) { <...
arr[
- ex2
+ ex1
]
...> }
Signed-off-by: sayli karnik <[email protected]>
Reviewed-by: Johan Hovold <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/event_analyzing_sample.py')
0 files changed, 0 insertions, 0 deletions