]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
Revert "fat/fs: move ls to generic implementation"
authorVipul Kumar <vipul.kumar@xilinx.com>
Wed, 5 Sep 2018 10:02:22 +0000 (15:32 +0530)
committerMichal Simek <michal.simek@xilinx.com>
Wed, 5 Sep 2018 12:08:08 +0000 (14:08 +0200)
This reverts commit 89191d626793490b579e1d36e7d7a4464a20f9f6.

Add a generic implementation of 'ls' using opendir/readdir/closedir, and
replace fat's custom implementation.  Other filesystems should move to
the generic implementation after they add opendir/readdir/closedir
support.

Signed-off-by: Vipul Kumar <vipul.kumar@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
fs/fat/fat.c
fs/fs.c
include/fat.h

index 56386ed79bfcddf727d97e5255e4c32b0fbc0692..994d3251b112c2f0839d0c11c477d1fede43c08a 100644 (file)
@@ -1028,6 +1028,38 @@ int file_fat_detectfs(void)
        return 0;
 }
 
+int file_fat_ls(const char *dir)
+{
+       fsdata fsdata;
+       fat_itr itrblock, *itr = &itrblock;
+       int files = 0, dirs = 0;
+       int ret;
+
+       ret = fat_itr_root(itr, &fsdata);
+       if (ret)
+               return ret;
+
+       ret = fat_itr_resolve(itr, dir, TYPE_DIR);
+       if (ret)
+               return ret;
+
+       while (fat_itr_next(itr)) {
+               if (fat_itr_isdir(itr)) {
+                       printf("            %s/\n", itr->name);
+                       dirs++;
+               } else {
+                       printf(" %8u   %s\n",
+                              FAT2CPU32(itr->dent->size),
+                              itr->name);
+                       files++;
+               }
+       }
+
+       printf("\n%d file(s), %d dir(s)\n\n", files, dirs);
+
+       return 0;
+}
+
 int fat_exists(const char *filename)
 {
        fsdata fsdata;
diff --git a/fs/fs.c b/fs/fs.c
index 9c4d67faf82324c44d051ab4c14ed8734784b0a1..4377417e3ed19050cabdea86cc06267af5c5e7cb 100644 (file)
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -38,35 +38,6 @@ static inline int fs_ls_unsupported(const char *dirname)
        return -1;
 }
 
-/* generic implementation of ls in terms of opendir/readdir/closedir */
-__maybe_unused
-static int fs_ls_generic(const char *dirname)
-{
-       struct fs_dir_stream *dirs;
-       struct fs_dirent *dent;
-       int nfiles = 0, ndirs = 0;
-
-       dirs = fs_opendir(dirname);
-       if (!dirs)
-               return -errno;
-
-       while ((dent = fs_readdir(dirs))) {
-               if (dent->type == FS_DT_DIR) {
-                       printf("            %s/\n", dent->name);
-                       ndirs++;
-               } else {
-                       printf(" %8lld   %s\n", dent->size, dent->name);
-                       nfiles++;
-               }
-       }
-
-       fs_closedir(dirs);
-
-       printf("\n%d file(s), %d dir(s)\n\n", nfiles, ndirs);
-
-       return 0;
-}
-
 static inline int fs_exists_unsupported(const char *filename)
 {
        return 0;
@@ -153,7 +124,7 @@ static struct fstype_info fstypes[] = {
                .null_dev_desc_ok = false,
                .probe = fat_set_blk_dev,
                .close = fat_close,
-               .ls = fs_ls_generic,
+               .ls = file_fat_ls,
                .exists = fat_exists,
                .size = fat_size,
                .read = fat_read_file,
@@ -163,9 +134,7 @@ static struct fstype_info fstypes[] = {
                .write = fs_write_unsupported,
 #endif
                .uuid = fs_uuid_unsupported,
-               .opendir = fat_opendir,
-               .readdir = fat_readdir,
-               .closedir = fat_closedir,
+               .opendir = fs_opendir_unsupported,
        },
 #endif
 #ifdef CONFIG_FS_EXT4
index c41dfdebe10a9ef680dfdec54de46c38754f62a0..ab3b28028fd58867e30f7be2a0bb252dbb3e760f 100644 (file)
@@ -11,7 +11,6 @@
 #define _FAT_H_
 
 #include <asm/byteorder.h>
-#include <fs.h>
 
 #define CONFIG_SUPPORT_VFAT
 /* Maximum Long File Name length supported here is 128 UTF-16 code units */
@@ -184,6 +183,7 @@ static inline u32 sect_to_clust(fsdata *fsdata, u32 sect)
 }
 
 int file_fat_detectfs(void);
+int file_fat_ls(const char *dir);
 int fat_exists(const char *filename);
 int fat_size(const char *filename, loff_t *size);
 int file_fat_read_at(const char *filename, loff_t pos, void *buffer,
@@ -196,8 +196,5 @@ int file_fat_write(const char *filename, void *buf, loff_t offset, loff_t len,
                   loff_t *actwrite);
 int fat_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
                  loff_t *actread);
-int fat_opendir(const char *filename, struct fs_dir_stream **dirsp);
-int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
-void fat_closedir(struct fs_dir_stream *dirs);
 void fat_close(void);
 #endif /* _FAT_H_ */