Bläddra i källkod

[GFS2] Remove unused counters

This is kind of trivial in the greater scheme of things, but
this removes three counters that AFAICT are never used.

Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson 17 år sedan
förälder
incheckning
9feb7c889f
2 ändrade filer med 0 tillägg och 9 borttagningar
  1. 0 3
      fs/gfs2/incore.h
  2. 0 6
      fs/gfs2/sys.c

+ 0 - 3
fs/gfs2/incore.h

@@ -636,9 +636,6 @@ struct gfs2_sbd {
 
 
 	/* Counters */
 	/* Counters */
 
 
-	atomic_t sd_glock_count;
-	atomic_t sd_glock_held_count;
-	atomic_t sd_inode_count;
 	atomic_t sd_reclaimed;
 	atomic_t sd_reclaimed;
 
 
 	char sd_fsname[GFS2_FSNAME_LEN];
 	char sd_fsname[GFS2_FSNAME_LEN];

+ 0 - 6
fs/gfs2/sys.c

@@ -327,15 +327,9 @@ static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf)                 \
 }                                                                           \
 }                                                                           \
 static struct counters_attr counters_attr_##name = __ATTR_RO(name)
 static struct counters_attr counters_attr_##name = __ATTR_RO(name)
 
 
-COUNTERS_ATTR(glock_count,      "%u\n");
-COUNTERS_ATTR(glock_held_count, "%u\n");
-COUNTERS_ATTR(inode_count,      "%u\n");
 COUNTERS_ATTR(reclaimed,        "%u\n");
 COUNTERS_ATTR(reclaimed,        "%u\n");
 
 
 static struct attribute *counters_attrs[] = {
 static struct attribute *counters_attrs[] = {
-	&counters_attr_glock_count.attr,
-	&counters_attr_glock_held_count.attr,
-	&counters_attr_inode_count.attr,
 	&counters_attr_reclaimed.attr,
 	&counters_attr_reclaimed.attr,
 	NULL,
 	NULL,
 };
 };