[PATCH v3 9/9] staging: exfat: Correct return code

From: Valdis Kletnieks
Date: Mon Nov 11 2019 - 21:11:09 EST


Use -ENOTEMPTY rather than -EEXIST for attempting to remove
a directory that still has files in it.

Signed-off-by: Valdis Kletnieks <Valdis.Kletnieks@xxxxxx>
---
drivers/staging/exfat/exfat_super.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/exfat/exfat_super.c b/drivers/staging/exfat/exfat_super.c
index a97a61a60517..e2254d45ef6e 100644
--- a/drivers/staging/exfat/exfat_super.c
+++ b/drivers/staging/exfat/exfat_super.c
@@ -2167,7 +2167,7 @@ static int ffsRemoveDir(struct inode *inode, struct file_id_t *fid)
clu_to_free.flags = fid->flags;

if (!is_dir_empty(sb, &clu_to_free)) {
- ret = -EEXIST;
+ ret = -ENOTEMPTY;
goto out;
}

--
2.24.0