]> git.ozlabs.org Git - yaboot.git/blobdiff - include/fs.h
ofpath: Add support for VSCSI, VFC, and SAS
[yaboot.git] / include / fs.h
index 5bc7eebcb6fe44e617f0f8f20e21c929e06f7026..7f7847cde4ac91be3c2252c92d3edb625551e182 100644 (file)
 #include "file.h"
 
 int fserrorno;
+struct boot_fspec_t;
 
 struct fs_t {
        const char* name;
 
        int (*open)(    struct boot_file_t*     file,
-                       const char*             dev_name,
                        struct partition_t*     part,
-                       const char*             file_name);
-                       
+                       struct boot_fspec_t*    fspec);
+
        int (*read)(    struct boot_file_t*     file,
                        unsigned int            size,
                        void*                   buffer);
-                               
+
        int (*seek)(    struct boot_file_t*     file,
                        unsigned int            newpos);
-                                       
+
        int (*close)(   struct boot_file_t*     file);
+
+       unsigned int (*ino_size)(struct boot_file_t *file);
 };
 
 extern const struct fs_t *fs_of;
 extern const struct fs_t *fs_of_netboot;
 
-const struct fs_t *fs_open(struct boot_file_t *file, const char *dev_name,
-                         struct partition_t *part, const char *file_name);
+const struct fs_t *fs_open(struct boot_file_t *file,
+                         struct partition_t *part, struct boot_fspec_t *fspec);
 
 #endif