summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2016-02-11 12:00:28 +0100
committerZdenek Kabelac <zkabelac@redhat.com>2016-02-11 18:35:05 +0100
commit0baf66a992fbac92fa2c30e9bb8e74a5535ff45a (patch)
tree95ee13fba73f9a27df9d3876b06321390c226af3
parentf91622741f95713539b863338743eb217e0731c2 (diff)
downloadlvm2-0baf66a992fbac92fa2c30e9bb8e74a5535ff45a.tar.gz
dm: alloc always 8byte aligned
Fixing regression caused by 197b5e6dc7dd8ec161ebe43c97fd2ac8384b3433. So the 'TODO' part now finally know the answer - there is 'sparc64' architecture which imposes limitation to read 64b words only through 64b aligned address. Since we never could know how is the user going to use the returned pointer and the userusually expects it's aligned on the highest CPU required alignement, preserve it also for char*. Fixes: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809685 Reported-by: Anatoly Pugachev <matorola@gmail.com>
-rw-r--r--WHATS_NEW_DM1
-rw-r--r--libdm/mm/pool.c7
2 files changed, 5 insertions, 3 deletions
diff --git a/WHATS_NEW_DM b/WHATS_NEW_DM
index f54868f80..693667bbf 100644
--- a/WHATS_NEW_DM
+++ b/WHATS_NEW_DM
@@ -1,5 +1,6 @@
Version 1.02.116 -
====================================
+ Use fully aligned allocations for dm_pool_strdup/strndup() (1.02.64).
Fix thin-pool table parameter feature order to match kernel output.
Version 1.02.115 - 25th January 2016
diff --git a/libdm/mm/pool.c b/libdm/mm/pool.c
index ec6f1b859..c1cb61e29 100644
--- a/libdm/mm/pool.c
+++ b/libdm/mm/pool.c
@@ -48,17 +48,18 @@ static size_t pagesize_mask = 0;
char *dm_pool_strdup(struct dm_pool *p, const char *str)
{
- char *ret = dm_pool_alloc_aligned(p, strlen(str) + 1, 2);
+ size_t len = strlen(str) + 1;
+ char *ret = dm_pool_alloc(p, len);
if (ret)
- strcpy(ret, str);
+ memcpy(ret, str, len);
return ret;
}
char *dm_pool_strndup(struct dm_pool *p, const char *str, size_t n)
{
- char *ret = dm_pool_alloc_aligned(p, n + 1, 2);
+ char *ret = dm_pool_alloc(p, n + 1);
if (ret) {
strncpy(ret, str, n);