linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] fs/fat: fix ENOSPC condition of directory entries.
@ 2013-12-23  5:55 NODA, Kai
  2013-12-23 11:05 ` OGAWA Hirofumi
  0 siblings, 1 reply; 3+ messages in thread
From: NODA, Kai @ 2013-12-23  5:55 UTC (permalink / raw)
  To: OGAWA Hirofumi; +Cc: linux-fsdevel, NODA, Kai

From: "NODA, Kai" <nodakai@gmail.com>

FAT_MAX_DIR_ENTRIES entries in a normal directory should be permitted as
per the FAT spec.  Previously the max number of entries was
FAT_MAX_DIR_ENTRIES - 1 due to the bug.

Signed-off-by: NODA, Kai <nodakai@gmail.com>
---
 fs/fat/dir.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/fat/dir.c b/fs/fat/dir.c
index 3963ede..cf9be44 100644
--- a/fs/fat/dir.c
+++ b/fs/fat/dir.c
@@ -1288,7 +1288,7 @@ int fat_add_entries(struct inode *dir, void *slots, int nr_slots,
 	err = -ENOSPC;
 	while (fat_get_entry(dir, &pos, &bh, &de) > -1) {
 		/* check the maximum size of directory */
-		if (pos >= FAT_MAX_DIR_SIZE)
+		if (pos > FAT_MAX_DIR_SIZE)
 			goto error;
 
 		if (IS_FREE(de->name)) {
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-12-23 13:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-23  5:55 [PATCH 1/1] fs/fat: fix ENOSPC condition of directory entries NODA, Kai
2013-12-23 11:05 ` OGAWA Hirofumi
2013-12-23 13:06   ` OGAWA Hirofumi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).