2015-06-10 16:32:18

by Fabian Frédérick

[permalink] [raw]
Subject: [PATCH 1/1 linux-next] IB/mthca: use swap() in mthca_make_profile()

Use kernel.h macro definition.

Thanks to Julia Lawall for Coccinelle scripting support.

Signed-off-by: Fabian Frederick <[email protected]>
---
drivers/infiniband/hw/mthca/mthca_profile.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/drivers/infiniband/hw/mthca/mthca_profile.c b/drivers/infiniband/hw/mthca/mthca_profile.c
index 8edb28a..15d0644 100644
--- a/drivers/infiniband/hw/mthca/mthca_profile.c
+++ b/drivers/infiniband/hw/mthca/mthca_profile.c
@@ -77,7 +77,6 @@ s64 mthca_make_profile(struct mthca_dev *dev,
u64 mem_base, mem_avail;
s64 total_size = 0;
struct mthca_resource *profile;
- struct mthca_resource tmp;
int i, j;

profile = kzalloc(MTHCA_RES_NUM * sizeof *profile, GFP_KERNEL);
@@ -136,11 +135,8 @@ s64 mthca_make_profile(struct mthca_dev *dev,
*/
for (i = MTHCA_RES_NUM; i > 0; --i)
for (j = 1; j < i; ++j) {
- if (profile[j].size > profile[j - 1].size) {
- tmp = profile[j];
- profile[j] = profile[j - 1];
- profile[j - 1] = tmp;
- }
+ if (profile[j].size > profile[j - 1].size)
+ swap(profile[j], profile[j - 1]);
}

for (i = 0; i < MTHCA_RES_NUM; ++i) {
--
2.4.2


2015-06-12 15:24:26

by Doug Ledford

[permalink] [raw]
Subject: Re: [PATCH 1/1 linux-next] IB/mthca: use swap() in mthca_make_profile()

On 06/10/2015 12:31 PM, Fabian Frederick wrote:
> Use kernel.h macro definition.
>
> Thanks to Julia Lawall for Coccinelle scripting support.
>
> Signed-off-by: Fabian Frederick <[email protected]>

Thanks, applied.

> ---
> drivers/infiniband/hw/mthca/mthca_profile.c | 8 ++------
> 1 file changed, 2 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/infiniband/hw/mthca/mthca_profile.c b/drivers/infiniband/hw/mthca/mthca_profile.c
> index 8edb28a..15d0644 100644
> --- a/drivers/infiniband/hw/mthca/mthca_profile.c
> +++ b/drivers/infiniband/hw/mthca/mthca_profile.c
> @@ -77,7 +77,6 @@ s64 mthca_make_profile(struct mthca_dev *dev,
> u64 mem_base, mem_avail;
> s64 total_size = 0;
> struct mthca_resource *profile;
> - struct mthca_resource tmp;
> int i, j;
>
> profile = kzalloc(MTHCA_RES_NUM * sizeof *profile, GFP_KERNEL);
> @@ -136,11 +135,8 @@ s64 mthca_make_profile(struct mthca_dev *dev,
> */
> for (i = MTHCA_RES_NUM; i > 0; --i)
> for (j = 1; j < i; ++j) {
> - if (profile[j].size > profile[j - 1].size) {
> - tmp = profile[j];
> - profile[j] = profile[j - 1];
> - profile[j - 1] = tmp;
> - }
> + if (profile[j].size > profile[j - 1].size)
> + swap(profile[j], profile[j - 1]);
> }
>
> for (i = 0; i < MTHCA_RES_NUM; ++i) {
>



Attachments:
signature.asc (884.00 B)
OpenPGP digital signature