diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-01-26 04:18:44 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-01-26 04:18:44 +0100 |
commit | 034c6ed7da5e44bfdde5a5d0da75f7b7a59953b8 (patch) | |
tree | ea59315075d3ebda2de695b1bd0621d79fa9e987 /device.c | |
parent | 9152c765065184d0c1267ed2499e3fe4cac53755 (diff) |
first attempt at proper service/socket logic
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 25 |
1 files changed, 10 insertions, 15 deletions
@@ -4,6 +4,13 @@ #include "device.h" #include "strv.h" +static void device_done(Name *n) { + Device *d = DEVICE(n); + + assert(d); + strv_free(d->sysfs); +} + static void device_dump(Name *n, FILE *f, const char *prefix) { static const char* const state_table[_DEVICE_STATE_MAX] = { @@ -24,24 +31,12 @@ static NameActiveState device_active_state(Name *n) { return DEVICE(n)->state == DEVICE_DEAD ? NAME_INACTIVE : NAME_ACTIVE; } -static void device_free_hook(Name *n) { - Device *d = DEVICE(n); - - assert(d); - strv_free(d->sysfs); -} - const NameVTable device_vtable = { .suffix = ".device", - .load = name_load_fragment_and_dropin, + .init = name_load_fragment_and_dropin, + .done = device_done, .dump = device_dump, - .start = NULL, - .stop = NULL, - .reload = NULL, - - .active_state = device_active_state, - - .free_hook = device_free_hook + .active_state = device_active_state }; |