X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fsd-daemon.c;fp=src%2Fsd-daemon.c;h=9c23b917f90a2a120992f7abe80f82c295353979;hb=d0b4880988c5900c0f951aa6fe700686411cd03e;hp=316fccc50a2fa806de374e0f55f12b10e6ce6c47;hpb=a55da3cd5ea9d8cb6d7f1490516734fd43d016cb;p=elogind.git diff --git a/src/sd-daemon.c b/src/sd-daemon.c index 316fccc50..9c23b917f 100644 --- a/src/sd-daemon.c +++ b/src/sd-daemon.c @@ -433,41 +433,3 @@ int sd_booted(void) { return a.st_dev != b.st_dev; #endif } - -static int touch(const char *path) { - -#if !defined(DISABLE_SYSTEMD) && defined(__linux__) - int fd; - - mkdir("/dev/.systemd", 0755); - mkdir("/dev/.systemd/readahead", 0755); - - if ((fd = open(path, O_WRONLY|O_CREAT|O_CLOEXEC|O_NOCTTY, 0666)) < 0) - return -errno; - - for (;;) { - if (close(fd) >= 0) - break; - - if (errno != -EINTR) - return -errno; - } - -#endif - return 0; -} - -int sd_readahead(const char *action) { - - if (!action) - return -EINVAL; - - if (strcmp(action, "cancel") == 0) - return touch("/dev/.systemd/readahead/cancel"); - else if (strcmp(action, "done") == 0) - return touch("/dev/.systemd/readahead/done"); - else if (strcmp(action, "noreplay") == 0) - return touch("/dev/.systemd/readahead/noreplay"); - - return -EINVAL; -}