Commit 2222e8d0 authored by Aaron Jacobs's avatar Aaron Jacobs

Specify that errors from Release{File,Dir}Handle ops are ignored.

Fixes #6.
parent 14ea5a9d
......@@ -496,6 +496,8 @@ func (o *ReadDirOp) Respond(err error) {
//
// The kernel guarantees that the handle ID will not be used in further ops
// sent to the file system (unless it is reissued by the file system).
//
// Errors from this op are ignored by the kernel (cf. http://goo.gl/RL38Do).
type ReleaseDirHandleOp struct {
commonOp
......@@ -787,6 +789,8 @@ func (o *FlushFileOp) Respond(err error) {
//
// The kernel guarantees that the handle ID will not be used in further calls
// to the file system (unless it is reissued by the file system).
//
// Errors from this op are ignored by the kernel (cf. http://goo.gl/RL38Do).
type ReleaseFileHandleOp struct {
commonOp
......
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