diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-06-25 05:48:53 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 10:01:19 -0700 |
commit | f9a2842e5612b93fa20a624a8baa6c2a7ecea504 (patch) | |
tree | cc6865cc0a60a35b2f1740662313d288d9a20353 /fs/fuse/fuse_i.h | |
parent | 33649c91a3df57c1090a657637d44b896de367e7 (diff) | |
download | op-kernel-dev-f9a2842e5612b93fa20a624a8baa6c2a7ecea504.zip op-kernel-dev-f9a2842e5612b93fa20a624a8baa6c2a7ecea504.tar.gz |
[PATCH] fuse: rename the interrupted flag
Rename the 'interrupted' flag to 'aborted', since it indicates exactly that,
and next patch will introduce an 'interrupted' flag for a
Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r-- | fs/fuse/fuse_i.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index f7c7451..fd65e75 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -159,8 +159,8 @@ struct fuse_req { /** Force sending of the request even if interrupted */ unsigned force:1; - /** The request was interrupted */ - unsigned interrupted:1; + /** The request was aborted */ + unsigned aborted:1; /** Request is sent in the background */ unsigned background:1; |