From: Ken'ichi Ohmichi Date: Wed, 13 May 2009 04:27:57 +0000 (+0900) Subject: Cleanup: make the indent of cgroup_init()shallower. X-Git-Tag: v0.34~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54a346f0934c5ce64dc5f97e8b47ad92ae371845;p=thirdparty%2Flibcgroup.git 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 --- diff --git a/src/api.c b/src/api.c index 4902c456..4f88d202 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++; } }