Commit 4ba6ccd6 authored by Hyeongseok.Kim's avatar Hyeongseok.Kim Committed by Namjae Jeon
Browse files

exfat: Set the unused characters of FileName field to the value 0000h



Some fsck tool complain that padding part of the FileName field
is not set to the value 0000h. So let's maintain filesystem cleaner,
as exfat's spec. recommendation.

Signed-off-by: default avatarHyeongseok.Kim <Hyeongseok@gmail.com>
Reviewed-by: default avatarSungjong Seo <sj1557.seo@samsung.com>
Signed-off-by: default avatarNamjae Jeon <namjae.jeon@samsung.com>
parent 9ebcfadb
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -425,10 +425,12 @@ static void exfat_init_name_entry(struct exfat_dentry *ep,
	ep->dentry.name.flags = 0x0;

	for (i = 0; i < EXFAT_FILE_NAME_LEN; i++) {
		if (*uniname != 0x0) {
			ep->dentry.name.unicode_0_14[i] = cpu_to_le16(*uniname);
		if (*uniname == 0x0)
			break;
			uniname++;
		} else {
			ep->dentry.name.unicode_0_14[i] = 0x0;
		}
	}
}