diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-06-25 08:48:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 13:01:19 -0400 |
commit | f9a2842e5612b93fa20a624a8baa6c2a7ecea504 (patch) | |
tree | cc6865cc0a60a35b2f1740662313d288d9a20353 /fs/fuse/fuse_i.h | |
parent | 33649c91a3df57c1090a657637d44b896de367e7 (diff) |
[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 f7c74516f3a6..fd65e75e1622 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h | |||
@@ -159,8 +159,8 @@ struct fuse_req { | |||
159 | /** Force sending of the request even if interrupted */ | 159 | /** Force sending of the request even if interrupted */ |
160 | unsigned force:1; | 160 | unsigned force:1; |
161 | 161 | ||
162 | /** The request was interrupted */ | 162 | /** The request was aborted */ |
163 | unsigned interrupted:1; | 163 | unsigned aborted:1; |
164 | 164 | ||
165 | /** Request is sent in the background */ | 165 | /** Request is sent in the background */ |
166 | unsigned background:1; | 166 | unsigned background:1; |