Ignore:
File:
1 edited

Legend:

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

    r5a6cc679 ra35b458  
    4242#include <task.h>
    4343#include <ipc/services.h>
     44#include <str.h>
    4445#include "ext4/ops.h"
    4546#include "../../vfs/vfs.h"
     
    5556{
    5657        printf("%s: HelenOS ext4 file system server\n", NAME);
    57        
     58
    5859        if (argc == 3) {
    5960                if (!str_cmp(argv[1], "--instance"))
     
    6465                }
    6566        }
    66        
     67
    6768        async_sess_t *vfs_sess = service_connect_blocking(SERVICE_VFS,
    6869            INTERFACE_VFS_DRIVER, 0);
     
    7172                return 2;
    7273        }
    73        
     74
    7475        errno_t rc = ext4_global_init();
    7576        if (rc != EOK) {
     
    7778                return rc;
    7879        }
    79        
     80
    8081        rc = fs_register(vfs_sess, &ext4fs_vfs_info, &ext4_ops,
    8182            &ext4_libfs_ops);
     
    8485                return rc;
    8586        }
    86        
     87
    8788        printf("%s: Accepting connections\n", NAME);
    8889        task_retval(0);
    8990        async_manager();
    90        
     91
    9192        /* Not reached */
    9293        return 0;
Note: See TracChangeset for help on using the changeset viewer.