More NXFFS logic

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3537 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2011-04-28 21:05:39 +00:00
parent 3aead78c40
commit 3a0b5406d1

View File

@ -4,8 +4,6 @@
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* References: Linux/Documentation/filesystems/romfs.txt
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
@ -388,11 +386,10 @@ static int binfs_readdir(struct inode *mountpt, struct fs_dirent_s *dir)
index++;
/* Set up the next directory entry offset. NOTE that we could use the
* standard fr_curroffset instead of our own private fr_curroffset.
* standard f_pos instead of our own private fb_index.
*/
dir->u.binfs.fb_index = index;
dir->u.romfs.fr_curroffset = index;
ret = OK;
}
@ -423,7 +420,6 @@ static int binfs_rewinddir(struct inode *mountpt, struct fs_dirent_s *dir)
binfs_semtake(bm);
dir->u.binfs.fb_index = 0;
dir->u.romfs.fr_curroffset = 0;
binfs_semgive(bm);
return OK;