Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64691
b: refs/heads/master
c: 1aac0b5
h: refs/heads/master
i:
  64689: 49e5eb8
  64687: 0166898
v: v3
  • Loading branch information
Jesper Juhl authored and Tony Luck committed Sep 1, 2007
1 parent ce6ccb4 commit a2aab47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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: f740e6c9c55cac6ab0a7d44a464b54467cca4f4f
refs/heads/master: 1aac0b5739ae192ee812eee09625ebfc08c2d760
3 changes: 2 additions & 1 deletion trunk/arch/ia64/sn/kernel/sn2/sn_hwperf.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ static int sn_hwperf_enum_objects(int *nobj, struct sn_hwperf_object_info **ret)
}

sz = sn_hwperf_obj_cnt * sizeof(struct sn_hwperf_object_info);
if ((objbuf = (struct sn_hwperf_object_info *) vmalloc(sz)) == NULL) {
objbuf = vmalloc(sz);
if (objbuf == NULL) {
printk("sn_hwperf_enum_objects: vmalloc(%d) failed\n", (int)sz);
e = -ENOMEM;
goto out;
Expand Down

0 comments on commit a2aab47

Please sign in to comment.