minix/minix/lib/libvtreefs/vtreefs.c
David van Moolenbroek 693ad767e8 libvtreefs: convert to KNF
Change-Id: I81bdf05c9b630a0cbb0ac573d36d4f59f8137199
2014-11-12 12:13:33 +00:00

97 lines
1.8 KiB
C

/* VTreeFS - vtreefs.c - initialization and message loop */
#include "inc.h"
static unsigned int inodes;
static struct inode_stat *root_stat;
static index_t root_entries;
/*
* Initialize internal state, and register with VFS.
*/
static int
init_server(int __unused type, sef_init_info_t * __unused info)
{
/* Initialize the virtual tree. */
init_inodes(inodes, root_stat, root_entries);
return OK;
}
/*
* We received a signal.
*/
static void
got_signal(int signal)
{
if (signal != SIGTERM)
return;
fsdriver_terminate();
}
/*
* SEF initialization.
*/
static void
sef_local_startup(void)
{
sef_setcb_init_fresh(init_server);
sef_setcb_init_restart(init_server);
sef_setcb_signal_handler(got_signal);
/* No support for live update yet. */
sef_startup();
}
/*
* We have received a message that is not a file system request from VFS.
* Call the message hook, if there is one.
*/
void
fs_other(const message * m_ptr, int __unused ipc_status)
{
message msg;
if (vtreefs_hooks->message_hook != NULL) {
/*
* Not all of vtreefs's users play nice with the message, so
* make a copy to allow it to be modified.
*/
msg = *m_ptr;
vtreefs_hooks->message_hook(&msg);
}
}
/*
* This is the main routine of this service. It uses the main loop as provided
* by the fsdriver library. The routine returns once the file system has been
* unmounted and the process is signaled to exit.
*/
void
start_vtreefs(struct fs_hooks * hooks, unsigned int nr_inodes,
struct inode_stat * stat, index_t nr_indexed_entries)
{
/*
* Use global variables to work around the inability to pass parameters
* through SEF to the initialization function..
*/
vtreefs_hooks = hooks;
inodes = nr_inodes;
root_stat = stat;
root_entries = nr_indexed_entries;
sef_local_startup();
fsdriver_task(&vtreefs_table);
cleanup_inodes();
}