Commit c7ea480a authored by Aaron Jacobs's avatar Aaron Jacobs

Improved lookup logging.

parent 355975cf
...@@ -53,6 +53,10 @@ func describeRequest(op interface{}) (s string) { ...@@ -53,6 +53,10 @@ func describeRequest(op interface{}) (s string) {
case *unknownOp: case *unknownOp:
addComponent("opcode %d", typed.OpCode) addComponent("opcode %d", typed.OpCode)
case *fuseops.LookUpInodeOp:
addComponent("parent %d", typed.Parent)
addComponent("name %q", typed.Name)
case *fuseops.ReadFileOp: case *fuseops.ReadFileOp:
addComponent("handle %d", typed.Handle) addComponent("handle %d", typed.Handle)
addComponent("offset %d", typed.Offset) addComponent("offset %d", typed.Offset)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment