Commit c886fa3c authored by Christoph Hellwig's avatar Christoph Hellwig
Browse files

configfs: simplify configfs_release_bin_file



Remove the clearing of various fields just before freeing the
buffer structure.

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent 3c252b08
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -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;