From: Zdenek Kabelac Date: Thu, 20 Oct 2011 13:33:41 +0000 (+0000) Subject: Simplify some pointer operations X-Git-Tag: v2_02_91~383 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=e3359201cf9ca5b82ccf792a08f011601599c526;p=lvm2.git Simplify some pointer operations --- diff --git a/WHATS_NEW_DM b/WHATS_NEW_DM index 06ceb0ae0..75edc9020 100644 --- a/WHATS_NEW_DM +++ b/WHATS_NEW_DM @@ -1,5 +1,6 @@ Version 1.02.68 - ================================== + Simplify some pointer operations in dm_free_aux() debug code.. Remove unused dbg_malloc.h file from source tree. Cleanup backtraces for _create_and_load_v4(). Fix alignment warning in bitcount calculation for raid segment. diff --git a/libdm/mm/dbg_malloc.c b/libdm/mm/dbg_malloc.c index db7f5f3ed..cf8330cf4 100644 --- a/libdm/mm/dbg_malloc.c +++ b/libdm/mm/dbg_malloc.c @@ -143,9 +143,9 @@ void dm_free_aux(void *p) assert(mb->magic == p); /* check data at the far boundary */ - ptr = ((char *) mb) + sizeof(struct memblock) + mb->length; + ptr = (char *) p + mb->length; for (i = 0; i < sizeof(unsigned long); i++) - if (*ptr++ != (char) mb->id) + if (ptr[i] != (char) mb->id) assert(!"Damage at far end of block"); /* have we freed this before ? */ @@ -165,9 +165,9 @@ void dm_free_aux(void *p) mb->id = 0; /* stomp a different pattern across the memory */ - ptr = ((char *) mb) + sizeof(struct memblock); + ptr = p; for (i = 0; i < mb->length; i++) - *ptr++ = i & 1 ? (char) 0xde : (char) 0xad; + ptr[i] = i & 1 ? (char) 0xde : (char) 0xad; assert(_mem_stats.blocks_allocated); _mem_stats.blocks_allocated--;