diff options
author | Joe Thornber <ejt@redhat.com> | 2018-06-08 13:40:53 +0100 |
---|---|---|
committer | Joe Thornber <ejt@redhat.com> | 2018-06-08 13:40:53 +0100 |
commit | d5da55ed85248adb066d293c2a1b863ce17d2779 (patch) | |
tree | e526dd2f773e3016a3acd3cb8e490ed11ba7c439 /lib/striped | |
parent | c78239d8605f333915543c0e0c3ccf4f4ef5ee8f (diff) | |
download | lvm2-d5da55ed85248adb066d293c2a1b863ce17d2779.tar.gz |
device_mapper: remove dbg_malloc.
I wrote dbg_malloc before we had valgrind. These days there's just
no need.
Diffstat (limited to 'lib/striped')
-rw-r--r-- | lib/striped/striped.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/striped/striped.c b/lib/striped/striped.c index a9854a2e2..efed16982 100644 --- a/lib/striped/striped.c +++ b/lib/striped/striped.c @@ -13,6 +13,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "base/memory/zalloc.h" #include "lib/misc/lib.h" #include "lib/commands/toolcontext.h" #include "lib/metadata/segtype.h" @@ -212,7 +213,7 @@ static int _striped_target_present(struct cmd_context *cmd, static void _striped_destroy(struct segment_type *segtype) { - dm_free(segtype); + free(segtype); } static struct segtype_handler _striped_ops = { @@ -232,7 +233,7 @@ static struct segtype_handler _striped_ops = { static struct segment_type *_init_segtype(struct cmd_context *cmd, const char *name, uint64_t target) { - struct segment_type *segtype = dm_zalloc(sizeof(*segtype)); + struct segment_type *segtype = zalloc(sizeof(*segtype)); if (!segtype) return_NULL; |