]> sourceware.org Git - lvm2.git/commitdiff
libdm: Move _skip_fields within file.
authorAlasdair G Kergon <agk@redhat.com>
Tue, 22 Mar 2016 19:27:34 +0000 (19:27 +0000)
committerAlasdair G Kergon <agk@redhat.com>
Tue, 22 Mar 2016 19:35:14 +0000 (19:35 +0000)
libdm/libdm-targets.c

index fd74336aabe8de1bb91c63b19824b8e69c0534e9..8a8a328d18c99e207973d1a8c85a0c694cc6b536 100644 (file)
@@ -54,6 +54,18 @@ int dm_get_status_snapshot(struct dm_pool *mem, const char *params,
        return 1;
 }
 
+/*
+ * Skip nr fields each delimited by a single space.
+ * FIXME Don't assume single space.
+ */
+static const char *_skip_fields(const char *p, unsigned nr)
+{
+       while (p && nr-- && (p = strchr(p, ' ')))
+               p++;
+
+       return p;
+}
+
 /*
  * Various RAID status versions include:
  * Versions < 1.5.0 (4 fields):
@@ -132,17 +144,6 @@ bad:
        return 0;
 }
 
-/*
- * Skip nr fields delimited by a single space.
- */
-static const char *_skip_fields(const char *p, unsigned nr)
-{
-       while (p && nr-- && (p = strchr(p, ' ')))
-               p++;
-
-       return p;
-}
-
 /*
  * <metadata block size> <#used metadata blocks>/<#total metadata blocks>
  * <cache block size> <#used cache blocks>/<#total cache blocks>
This page took 0.041265 seconds and 5 git commands to generate.