From 54a346f0934c5ce64dc5f97e8b47ad92ae371845 Mon Sep 17 00:00:00 2001 From: Ken'ichi Ohmichi Date: Wed, 13 May 2009 13:27:57 +0900 Subject: Cleanup: make the indent of cgroup_init()shallower. Hi, This patch makes the indent of cgroup_init() shallower for the readability. Thanks Ken'ichi Ohmichi Signed-off-by: Ken'ichi Ohmichi Acked-by: Dhaval Giani Signed-off-by: Dhaval Giani --- src/api.c | 42 ++++++++++++++++++++---------------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/src/api.c b/src/api.c index 4902c45..4f88d20 100644 --- a/src/api.c +++ b/src/api.c @@ -633,28 +633,26 @@ int cgroup_init() while ((ent = getmntent_r(proc_mount, temp_ent, mntent_buffer, sizeof(mntent_buffer))) != NULL) { - if (!strcmp(ent->mnt_type, "cgroup")) { - for (i = 0; controllers[i] != NULL; i++) { - mntopt = hasmntopt(ent, controllers[i]); - - if (!mntopt) - continue; - - mntopt = strtok_r(mntopt, ",", &strtok_buffer); - - if (strcmp(mntopt, controllers[i]) == 0) { - cgroup_dbg("matched %s:%s\n", mntopt, - controllers[i]); - strcpy(cg_mount_table[found_mnt].name, - controllers[i]); - strcpy(cg_mount_table[found_mnt].path, - ent->mnt_dir); - cgroup_dbg("Found cgroup option %s, " - " count %d\n", - ent->mnt_opts, found_mnt); - found_mnt++; - } - } + if (strcmp(ent->mnt_type, "cgroup")) + continue; + + for (i = 0; controllers[i] != NULL; i++) { + mntopt = hasmntopt(ent, controllers[i]); + + if (!mntopt) + continue; + + mntopt = strtok_r(mntopt, ",", &strtok_buffer); + + if (strcmp(mntopt, controllers[i])) + continue; + + cgroup_dbg("matched %s:%s\n", mntopt, controllers[i]); + strcpy(cg_mount_table[found_mnt].name, controllers[i]); + strcpy(cg_mount_table[found_mnt].path, ent->mnt_dir); + cgroup_dbg("Found cgroup option %s, count %d\n", + ent->mnt_opts, found_mnt); + found_mnt++; } } -- cgit