]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
blkmapd: Use getconf(_SC_PAGE_SIZE)
authorLuk Claes <luk@debian.org>
Mon, 3 Oct 2011 12:42:20 +0000 (08:42 -0400)
committerSteve Dickson <steved@redhat.com>
Mon, 3 Oct 2011 12:49:21 +0000 (08:49 -0400)
PAGE_SIZE is not exported by all architectures as it is not fixed: it
can depend on the model of the machine. So it's better to query the
system configuration for the actual page size on the machine.

Signed-off-by: Luk Claes <luk@debian.org>
Signed-off-by: Steve Dickson <steved@redhat.com>
utils/blkmapd/device-process.c

index 27ff374da8626d2474fa97107037ebea28a89302..652a7a8363449682d27a283e4da3e17adbf418c4 100644 (file)
@@ -296,7 +296,7 @@ decode_blk_volume(uint32_t **pp, uint32_t *end, struct bl_volume *vols, int voln
                off_t stripe_unit = vol->param.bv_stripe_unit;
                /* Check limitations imposed by device-mapper */
                if ((stripe_unit & (stripe_unit - 1)) != 0
-                   || stripe_unit < (off_t) (PAGE_SIZE >> 9))
+                   || stripe_unit < (off_t) (sysconf(_SC_PAGE_SIZE) >> 9))
                        return -EIO;
                BLK_READBUF(p, end, 4);
                READ32(vol->bv_vol_n);