1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cleanup: indents

This commit is contained in:
Zdenek Kabelac 2015-10-22 09:57:44 +02:00
parent b1319e0402
commit 1a2d0a0c72
3 changed files with 7 additions and 7 deletions

View 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);

View 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))

View 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;