-
Notifications
You must be signed in to change notification settings - Fork 19
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
parsedump: Simplify by using poi instead of regex #290
parsedump: Simplify by using poi instead of regex #290
Conversation
Instead of using `dt` on `OpenZFS!cbuf` and checking the output we can just use `poi(OpenZFS!cbuf)` in the `.writemem` command. Signed-off-by: Axel Gembe <[email protected]>
I also added this to https://openzfsonosx.org/wiki/Windows_BSOD#Debug_Print_Buffer |
Dang thats better. Does this script work for you? |
f8bcabb
into
openzfsonwindows:zfs-Windows-2.2.0-release
It works for me with some adjustments. I guess we should improve it to use |
I think cdb installs in a different place if you install it as part of the win sdk vs directly from the msi. We might need to check multiple locations |
I'd also really like it to support a KDB connection to a different machine. That would be really helpful to automate remote analysis on certain conditions like low memory, I'd need that for #283 |
Yes |
I think |
We could also add some more info like |
Instead of using
dt
onOpenZFS!cbuf
and checking the output we can just usepoi(OpenZFS!cbuf)
in the.writemem
command.