Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bb56acf840600421e68f49bb037d1c659fcb37f8
Commit:     bb56acf840600421e68f49bb037d1c659fcb37f8
Parent:     9e4e5f87ebcadb7ad9aca640bbe1038e1545e9f8
Author:     Jesper Juhl <[EMAIL PROTECTED]>
AuthorDate: Fri Oct 19 22:38:54 2007 +0100
Committer:  Alasdair G Kergon <[EMAIL PROTECTED]>
CommitDate: Sat Oct 20 02:01:10 2007 +0100

    dm io:ctl remove vmalloc void cast
    
    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 <[EMAIL PROTECTED]>
    Signed-off-by: Alasdair G Kergon <[EMAIL PROTECTED]>
---
 drivers/md/dm-ioctl.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/md/dm-ioctl.c b/drivers/md/dm-ioctl.c
index ba5d8f7..6af95f9 100644
--- a/drivers/md/dm-ioctl.c
+++ b/drivers/md/dm-ioctl.c
@@ -1358,7 +1358,7 @@ static int copy_params(struct dm_ioctl __user *user, 
struct dm_ioctl **param)
        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;
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to