Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/ext4fs/ext4fs.c

    ra35b458 r5a6cc679  
    4242#include <task.h>
    4343#include <ipc/services.h>
    44 #include <str.h>
    4544#include "ext4/ops.h"
    4645#include "../../vfs/vfs.h"
     
    5655{
    5756        printf("%s: HelenOS ext4 file system server\n", NAME);
    58 
     57       
    5958        if (argc == 3) {
    6059                if (!str_cmp(argv[1], "--instance"))
     
    6564                }
    6665        }
    67 
     66       
    6867        async_sess_t *vfs_sess = service_connect_blocking(SERVICE_VFS,
    6968            INTERFACE_VFS_DRIVER, 0);
     
    7271                return 2;
    7372        }
    74 
     73       
    7574        errno_t rc = ext4_global_init();
    7675        if (rc != EOK) {
     
    7877                return rc;
    7978        }
    80 
     79       
    8180        rc = fs_register(vfs_sess, &ext4fs_vfs_info, &ext4_ops,
    8281            &ext4_libfs_ops);
     
    8584                return rc;
    8685        }
    87 
     86       
    8887        printf("%s: Accepting connections\n", NAME);
    8988        task_retval(0);
    9089        async_manager();
    91 
     90       
    9291        /* Not reached */
    9392        return 0;
Note: See TracChangeset for help on using the changeset viewer.