]> sourceware.org Git - lvm2.git/commitdiff
cleanup: indents
authorZdenek Kabelac <zkabelac@redhat.com>
Thu, 22 Oct 2015 07:57:44 +0000 (09:57 +0200)
committerZdenek Kabelac <zkabelac@redhat.com>
Thu, 22 Oct 2015 20:46:10 +0000 (22:46 +0200)
daemons/dmeventd/dmeventd.c
daemons/dmeventd/plugins/raid/dmeventd_raid.c
lib/metadata/lv_manip.c

index 9662c0ef293bc94e64653ba82b8e3ada285ce615..6f3bfff94993a2fcdb2632a1b052a0c543c116b2 100644 (file)
@@ -230,6 +230,7 @@ struct thread_status {
        void *dso_private; /* dso per-thread status variable */
        /* TODO per-thread mutex */
 };
+
 static DM_LIST_INIT(_thread_registry);
 static DM_LIST_INIT(_thread_registry_unused);
 
@@ -819,6 +820,7 @@ static sigset_t _unblock_sigalrm(void)
        sigemptyset(&set);
        sigaddset(&set, SIGALRM);
        pthread_sigmask(SIG_UNBLOCK, &set, &old);
+
        return old;
 }
 
@@ -1412,7 +1414,7 @@ fail:
  * and a complete message is read.  Must not block indefinitely.
  */
 static int _client_read(struct dm_event_fifos *fifos,
-                      struct dm_event_daemon_message *msg)
+                       struct dm_event_daemon_message *msg)
 {
        struct timeval t;
        unsigned bytes = 0;
@@ -1859,7 +1861,6 @@ static void _daemonize(void)
        case -1:
                log_sys_error("fork", "");
                exit(EXIT_FAILURE);
-
        case 0:         /* Child */
                break;
 
@@ -2107,8 +2108,6 @@ int main(int argc, char *argv[])
                .server_path = DM_EVENT_FIFO_SERVER
        };
        time_t now, idle_exit_timeout = DMEVENTD_IDLE_EXIT_TIMEOUT;
-       //struct sys_log logdata = {DAEMON_NAME, LOG_DAEMON};
-
        opterr = 0;
        optind = 0;
 
@@ -2195,6 +2194,7 @@ int main(int argc, char *argv[])
        /* Signal parent, letting them know we are ready to go. */
        if (!_foreground)
                kill(getppid(), SIGTERM);
+
        log_notice("dmeventd ready for processing.");
 
        _idle_since = time(NULL);
index 2f200bae2db3350ce6941e4527b280aeccb2e6e3..99f2680582565cf4debb2e87ec879d0c7cc20d2b 100644 (file)
@@ -42,8 +42,8 @@ static int _process_raid_event(struct dso_state *state, char *params, const char
                        goto out; /* already reported */
 
                log_error("Device #%d of %s array, %s, has failed.",
-                        (int)(d - status->dev_health),
-                        status->raid_type, device);
+                         (int)(d - status->dev_health),
+                         status->raid_type, device);
 
                state->failed = 1;
                if (!dmeventd_lvm2_run_with_lock(state->cmd_lvscan))
index 316710b1ce91e0d81b9ca400922f235b8ebeaf60..738343f74c0e1495fc27f51f4ce3eb04a7da5824 100644 (file)
@@ -4495,7 +4495,7 @@ static int _adjust_policy_params(struct cmd_context *cmd,
                if (!lv_snapshot_percent(lv, &percent))
                        return_0;
                if (!(DM_PERCENT_0 < percent && percent <= DM_PERCENT_100) || percent <= policy_threshold)
-               return 1; /* nothing to do */
+                       return 1; /* nothing to do */
        }
 
        lp->extents = policy_amount;
This page took 0.050816 seconds and 5 git commands to generate.