--- device-mapper/WHATS_NEW 2008/06/27 15:36:51 1.249
+++ device-mapper/WHATS_NEW 2008/09/02 12:16:06 1.250
@@ -1,5 +1,6 @@
Version 1.02.28 -
================================
+ Extend deptree buffers so the largest possible device numbers fit.
Added generation of the versioned libdevmapper-event.so for LVM's test
Underline longer report help text headings.
/*
- * Format major/minor numbers correctly for input to driver
+ * Format major/minor numbers correctly for input to driver.
*/
+#define DM_FORMAT_DEV_BUFSIZE 13 /* Minimum bufsize to handle worst case. */
int dm_format_dev(char *buf, int bufsize, uint32_t dev_major, uint32_t dev_minor);
/* Use this to retrive target information returned from a STATUS call */
--- device-mapper/lib/libdm-deptree.c 2008/06/25 14:24:17 1.40
+++ device-mapper/lib/libdm-deptree.c 2008/09/02 12:16:07 1.41
@@ -1243,7 +1243,7 @@
size_t paramsize, int *pos)
{
struct seg_area *area;
- char devbuf[10];
+ char devbuf[DM_FORMAT_DEV_BUFSIZE];
int tw;
const char *prefix = "";
@@ -1270,7 +1270,8 @@
int pos = 0;
int tw;
int r;
- char originbuf[10], cowbuf[10], logbuf[10];
+ char originbuf[DM_FORMAT_DEV_BUFSIZE], cowbuf[DM_FORMAT_DEV_BUFSIZE];
+ char logbuf[DM_FORMAT_DEV_BUFSIZE];
const char *logtype;
switch(seg->type) {
--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel