diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2020-02-28 13:15:24 +0100 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2020-04-20 17:01:34 +0200 |
commit | 75d892588e959573b321895003462d88cae2cff3 (patch) | |
tree | 80fb19023b67460d70c215a277ff534eda9a938d /fs/fuse | |
parent | fuse: BUG_ON correction in fuse_dev_splice_write() (diff) | |
download | linux-75d892588e959573b321895003462d88cae2cff3.tar.xz linux-75d892588e959573b321895003462d88cae2cff3.zip |
fuse: Update stale comment in queue_interrupt()
Fixes: 04ec5af0776e "fuse: export fuse_end_request()"
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse')
-rw-r--r-- | fs/fuse/dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index 5c155437a455..6bda7d498f1a 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c @@ -342,7 +342,7 @@ static int queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req) list_add_tail(&req->intr_entry, &fiq->interrupts); /* * Pairs with smp_mb() implied by test_and_set_bit() - * from request_end(). + * from fuse_request_end(). */ smp_mb(); if (test_bit(FR_FINISHED, &req->flags)) { |