mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-14 00:04:00 +08:00
devtmpfs: Calling delete_path() only when necessary
The deleted variable is always 1 in current code. Initialize deleted variable to be 0, so delete_path() will be called only when necessary. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ecfbf6fd9c
commit
fbde7c6119
@ -299,7 +299,7 @@ static int handle_remove(const char *nodename, struct device *dev)
|
||||
{
|
||||
struct path parent;
|
||||
struct dentry *dentry;
|
||||
int deleted = 1;
|
||||
int deleted = 0;
|
||||
int err;
|
||||
|
||||
dentry = kern_path_locked(nodename, &parent);
|
||||
|
Loading…
Reference in New Issue
Block a user