From: Tian Xin Date: Sat, 19 Aug 2017 00:07:23 +0000 (-0700) Subject: Update obsolete file name bitesize -> bitehist X-Git-Tag: submit/tizen_4.0/20171018.110122~32^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b8146f1b3f5d46c6676f69c520dcef2b5496e20;p=platform%2Fupstream%2Fbcc.git Update obsolete file name bitesize -> bitehist Update tutorial to change the file name. --- diff --git a/docs/tutorial_bcc_python_developer.md b/docs/tutorial_bcc_python_developer.md index 2f8a58e9..183db554 100644 --- a/docs/tutorial_bcc_python_developer.md +++ b/docs/tutorial_bcc_python_developer.md @@ -326,7 +326,7 @@ This may be improved in future bcc versions. Eg, the Python data struct could be Rewrite sync_timing.py, from a prior lesson, to use ```BPF_PERF_OUTPUT```. -### Lesson 9. bitesize.py +### Lesson 9. bitehist.py The following tool records a histogram of disk I/O sizes. Sample output: @@ -345,7 +345,7 @@ Tracing... Hit Ctrl-C to end. 128 -> 255 : 800 |**************************************| ``` -Code is [examples/tracing/bitesize.py](../examples/tracing/bitesize.py): +Code is [examples/tracing/bitehist.py](../examples/tracing/bitehist.py): ```Python from bcc import BPF @@ -393,7 +393,7 @@ New things to learn: ### Lesson 10. disklatency.py -Write a program that times disk I/O, and prints a histogram of their latency. Disk I/O instrumentation and timing can be found in the disksnoop.py program from a prior lesson, and histogram code can be found in bitesize.py from a prior lesson. +Write a program that times disk I/O, and prints a histogram of their latency. Disk I/O instrumentation and timing can be found in the disksnoop.py program from a prior lesson, and histogram code can be found in bitehist.py from a prior lesson. ### Lesson 11. vfsreadlat.py