diff options
Diffstat (limited to 'stand/libsa/splitfs.c')
-rw-r--r-- | stand/libsa/splitfs.c | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/stand/libsa/splitfs.c b/stand/libsa/splitfs.c index af28704bc465..eb4b3a1feb11 100644 --- a/stand/libsa/splitfs.c +++ b/stand/libsa/splitfs.c @@ -24,9 +24,6 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include "stand.h" #define NTRIES (3) @@ -52,14 +49,15 @@ static off_t splitfs_seek(struct open_file *f, off_t offset, int where); static int splitfs_stat(struct open_file *f, struct stat *sb); struct fs_ops splitfs_fsops = { - "split", - splitfs_open, - splitfs_close, - splitfs_read, - null_write, - splitfs_seek, - splitfs_stat, - null_readdir + .fs_name = "split", + .fs_flags = 0, + .fo_open = splitfs_open, + .fo_close = splitfs_close, + .fo_read = splitfs_read, + .fo_write = null_write, + .fo_seek = splitfs_seek, + .fo_stat = splitfs_stat, + .fo_readdir = null_readdir, }; static void |