Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 122897
b: refs/heads/master
c: d76e56b
h: refs/heads/master
i:
  122895: 4996070
v: v3
  • Loading branch information
Nathan Lynch authored and David S. Miller committed Dec 26, 2008
1 parent 4f4f17a commit 83e5cf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 26c743bed9b0dc83dc736c68d2a3e7494a9790ad
refs/heads/master: d76e56b4c620c959fa8346c08d24ee4b2783a564
4 changes: 2 additions & 2 deletions trunk/drivers/net/ehea/ehea_qmr.c
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ int ehea_reg_kernel_mr(struct ehea_adapter *adapter, struct ehea_mr *mr)

unsigned long top;

pt = kzalloc(PAGE_SIZE, GFP_KERNEL);
pt = (void *)get_zeroed_page(GFP_KERNEL);
if (!pt) {
ehea_error("no mem");
ret = -ENOMEM;
Expand Down Expand Up @@ -937,7 +937,7 @@ int ehea_reg_kernel_mr(struct ehea_adapter *adapter, struct ehea_mr *mr)
mr->adapter = adapter;
ret = 0;
out:
kfree(pt);
free_page((unsigned long)pt);
return ret;
}

Expand Down

0 comments on commit 83e5cf4

Please sign in to comment.