Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0172e2e14c3c1df10ec0fa31d9f41c1bc3a472f3
Commit:     0172e2e14c3c1df10ec0fa31d9f41c1bc3a472f3
Parent:     4e8e6ee380c3858151165d7455b4954782f145a0
Author:     Jack Morgenstein <[EMAIL PROTECTED]>
AuthorDate: Thu Jul 26 11:16:58 2007 +0300
Committer:  Roland Dreier <[EMAIL PROTECTED]>
CommitDate: Sat Jul 28 08:30:45 2007 -0700

    mlx4_core: Remove kfree() in mlx4_mr_alloc() error flow
    
    mlx4_mr_alloc() doesn't actually allocate mr (it just initializes the
    pointer that the caller passes in), so it shouldn't free it if an
    error occurs.
    
    Signed-off-by: Jack Morgenstein <[EMAIL PROTECTED]>
    Signed-off-by: Roland Dreier <[EMAIL PROTECTED]>
---
 drivers/net/mlx4/mr.c |   15 +++------------
 1 files changed, 3 insertions(+), 12 deletions(-)

diff --git a/drivers/net/mlx4/mr.c b/drivers/net/mlx4/mr.c
index d0808fa..5b87183 100644
--- a/drivers/net/mlx4/mr.c
+++ b/drivers/net/mlx4/mr.c
@@ -255,10 +255,8 @@ int mlx4_mr_alloc(struct mlx4_dev *dev, u32 pd, u64 iova, 
u64 size, u32 access,
        int err;
 
        index = mlx4_bitmap_alloc(&priv->mr_table.mpt_bitmap);
-       if (index == -1) {
-               err = -ENOMEM;
-               goto err;
-       }
+       if (index == -1)
+               return -ENOMEM;
 
        mr->iova       = iova;
        mr->size       = size;
@@ -269,15 +267,8 @@ int mlx4_mr_alloc(struct mlx4_dev *dev, u32 pd, u64 iova, 
u64 size, u32 access,
 
        err = mlx4_mtt_init(dev, npages, page_shift, &mr->mtt);
        if (err)
-               goto err_index;
-
-       return 0;
-
-err_index:
-       mlx4_bitmap_free(&priv->mr_table.mpt_bitmap, index);
+               mlx4_bitmap_free(&priv->mr_table.mpt_bitmap, index);
 
-err:
-       kfree(mr);
        return err;
 }
 EXPORT_SYMBOL_GPL(mlx4_mr_alloc);
-
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