Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43340
b: refs/heads/master
c: 66888a6
h: refs/heads/master
v: v3
  • Loading branch information
Christoph Lameter authored and Tony Luck committed Dec 7, 2006
1 parent 21de724 commit 7224d13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: a5f8ee0291e75f92a27111eb01da82be93c9068e
refs/heads/master: 66888a6e5ffc756b9a4115fc766ee2258eefb928
6 changes: 3 additions & 3 deletions trunk/arch/ia64/kernel/efi.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ efi_gettimeofday (struct timespec *ts)
}

static int
is_available_memory (efi_memory_desc_t *md)
is_memory_available (efi_memory_desc_t *md)
{
if (!(md->attribute & EFI_MEMORY_WB))
return 0;
Expand Down Expand Up @@ -892,7 +892,7 @@ find_memmap_space (void)
}
contig_high = GRANULEROUNDDOWN(contig_high);
}
if (!is_available_memory(md) || md->type == EFI_LOADER_DATA)
if (!is_memory_available(md) || md->type == EFI_LOADER_DATA)
continue;

/* Round ends inward to granule boundaries */
Expand Down Expand Up @@ -968,7 +968,7 @@ efi_memmap_init(unsigned long *s, unsigned long *e)
}
contig_high = GRANULEROUNDDOWN(contig_high);
}
if (!is_available_memory(md))
if (!is_memory_available(md))
continue;

/*
Expand Down

0 comments on commit 7224d13

Please sign in to comment.