aboutsummaryrefslogtreecommitdiffstats
path: root/fs/configfs
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2021-06-22 09:43:56 +0200
committerChristoph Hellwig <hch@lst.de>2021-06-22 09:46:28 +0200
commitc886fa3cf6ffbe13006053ceb27c93d41928de30 (patch)
tree20555a12703775c376cff215a75b6a4e6dcd2a29 /fs/configfs
parent3c252b087de08d3cb32468b54a158bd7ad0ae2f7 (diff)
downloadlinux-c886fa3cf6ffbe13006053ceb27c93d41928de30.tar.gz
configfs: simplify configfs_release_bin_file
Remove the clearing of various fields just before freeing the buffer structure. Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/configfs')
-rw-r--r--fs/configfs/file.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/configfs/file.c b/fs/configfs/file.c
index 3964183335135..2f63bf3a7325f 100644
--- a/fs/configfs/file.c
+++ b/fs/configfs/file.c
@@ -393,11 +393,8 @@ static int configfs_release_bin_file(struct inode *inode, struct file *file)
{
struct configfs_buffer *buffer = file->private_data;
- buffer->read_in_progress = false;
-
if (buffer->write_in_progress) {
struct configfs_fragment *frag = to_frag(file);
- buffer->write_in_progress = false;
down_read(&frag->frag_sem);
if (!frag->frag_dead) {
@@ -410,9 +407,6 @@ static int configfs_release_bin_file(struct inode *inode, struct file *file)
}
vfree(buffer->bin_buffer);
- buffer->bin_buffer = NULL;
- buffer->bin_buffer_size = 0;
- buffer->needs_read_fill = 1;
configfs_release(inode, file);
return 0;