From: Jesper Juhl In drivers/md/dm-ioctl.c::copy_params() there's a call to vmalloc() where we currently cast the return value, but that's pretty pointless given that vmalloc() returns "void *". Signed-off-by: Jesper Juhl Signed-off-by: Alasdair G Kergon --- drivers/md/dm-ioctl.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.23-rc6/drivers/md/dm-ioctl.c =================================================================== --- linux-2.6.23-rc6.orig/drivers/md/dm-ioctl.c 2007-05-13 02:45:56.000000000 +0100 +++ linux-2.6.23-rc6/drivers/md/dm-ioctl.c 2007-09-19 21:50:06.000000000 +0100 @@ -1358,7 +1358,7 @@ static int copy_params(struct dm_ioctl _ if (tmp.data_size < sizeof(tmp)) return -EINVAL; - dmi = (struct dm_ioctl *) vmalloc(tmp.data_size); + dmi = vmalloc(tmp.data_size); if (!dmi) return -ENOMEM;