diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-09-11 13:12:05 +0300 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2018-09-28 17:43:23 +0300 |
commit | 3a5358d1a1b70bb3360578f09894d6856629ecdf (patch) | |
tree | a6ecdd3d2286bb09a30651c9f9b870f625caed8b /fs/fuse/fuse_i.h | |
parent | c59fd85e4fd07fdf0ab523a5e9734f5338d6aa19 (diff) | |
download | linux-3a5358d1a1b70bb3360578f09894d6856629ecdf.tar.xz |
fuse: kill req->intr_unique
This field is not needed after the previous patch, since we can easily
convert request ID to interrupt request ID and vice versa.
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r-- | fs/fuse/fuse_i.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index 6e6eab8127a4..1d7b5b7a051d 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -311,9 +311,6 @@ struct fuse_req { /** refcount */ refcount_t count; - /** Unique ID for the interrupt request */ - u64 intr_unique; - /* Request flags, updated with test/set/clear_bit() */ unsigned long flags; |