Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c1437c6d authored by Jens Axboe's avatar Jens Axboe Committed by Bernhard Thoben
Browse files

fs: move filp_close() outside of __close_fd_get_file()



Just one caller of this, and just use filp_close() there manually.
This is important to allow async close/removal of the fd.

Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
(cherry picked from commit 6e802a4ba056a6f2f51ac9d54eead3ed6f9829a2)
parent 29043942
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2386,11 +2386,13 @@ static void binder_deferred_fd_close(int fd)
		return;
	init_task_work(&twcb->twork, binder_do_fd_close);
	__close_fd_get_file(fd, &twcb->file);
	if (twcb->file)
	if (twcb->file) {
		filp_close(twcb->file, current->files);
		task_work_add(current, &twcb->twork, true);
	else
	} else {
		kfree(twcb);
	}
}

static void binder_transaction_buffer_release(struct binder_proc *proc,
					      struct binder_buffer *buffer,
+4 −2
Original line number Diff line number Diff line
@@ -672,7 +672,9 @@ out_unlock:
}

/*
 * variant of __close_fd that gets a ref on the file for later fput
 * variant of __close_fd that gets a ref on the file for later fput.
 * The caller must ensure that filp_close() called on the file, and then
 * an fput().
 */
int __close_fd_get_file(unsigned int fd, struct file **res)
{
@@ -692,7 +694,7 @@ int __close_fd_get_file(unsigned int fd, struct file **res)
	spin_unlock(&files->file_lock);
	get_file(file);
	*res = file;
	return filp_close(file, files);
	return 0;

out_unlock:
	spin_unlock(&files->file_lock);