-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add comments on events #1
Comments
And what is the difference between
It seems that they occur together and has very small time gap (1 us). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What does the events means in
/sys/kernel/debug/tracing/events/nvme
? There are four events in this directory:nvme_async_event
nvme_complete_rq
nvme_setup_cmd
nvme_sq
My kernel version: 5.4.0
I want to monitor the depth of each queue in real time. I suppose when I see
nvme_setup_cmd
, this means I can+1
the depth and when I seenvme_sq
, I can-1
the depth. Is that right?Thanks!
The text was updated successfully, but these errors were encountered: