From 46e47a527f156791669a271b12a55a1599023757 Mon Sep 17 00:00:00 2001 From: Gilles Espinasse Date: Tue, 26 Mar 2013 09:41:03 +0100 Subject: [PATCH] procps-ng : fix multi-line comment warnings slab.c:110:1: warning: multi-line comment slab.c:115:1: warning: multi-line comment slab.c:122:1: warning: multi-line comment slab.c:127:1: warning: multi-line comment Signed-off-by: Gilles Espinasse --- proc/slab.c | 59 +++++++++++++++++++++++++++-------------------------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/proc/slab.c b/proc/slab.c index 709888d4..5d78a4bf 100644 --- a/proc/slab.c +++ b/proc/slab.c @@ -100,35 +100,36 @@ void free_slabinfo(struct slab_info *list) } } -// parse_slabinfo20 - actual parse routine for slabinfo 2.x (2.6 kernels) -// Note: difference between 2.0 and 2.1 is in the ": globalstat" part where version 2.1 -// has extra column . We don't use ": globalstat" part in both versions. -// -// Formats (we don't use "statistics" extensions) -// -// slabinfo - version: 2.1 -// # name \ -// : tunables \ -// : slabdata -// -// slabinfo - version: 2.1 (statistics) -// # name \ -// : tunables \ -// : slabdata \ -// : globalstat \ -// : cpustat -// -// slabinfo - version: 2.0 -// # name \ -// : tunables \ -// : slabdata -// -// slabinfo - version: 2.0 (statistics) -// # name \ -// : tunables \ -// : slabdata \ -// : globalstat \ -// : cpustat +/* parse_slabinfo20 - actual parse routine for slabinfo 2.x (2.6 kernels) + * Note: difference between 2.0 and 2.1 is in the ": globalstat" part where version 2.1 + * has extra column . We don't use ": globalstat" part in both versions. + * + * Formats (we don't use "statistics" extensions) + * + * slabinfo - version: 2.1 + * # name \ + * : tunables \ + * : slabdata + * + * slabinfo - version: 2.1 (statistics) + * # name \ + * : tunables \ + * : slabdata \ + * : globalstat \ + * : cpustat + * + * slabinfo - version: 2.0 + * # name \ + * : tunables \ + * : slabdata + * + * slabinfo - version: 2.0 (statistics) + * # name \ + * : tunables \ + * : slabdata \ + * : globalstat \ + * : cpustat + */ static int parse_slabinfo20(struct slab_info **list, struct slab_stat *stats, FILE *f) { -- 2.40.0