For consistency with other similar functions in the same file and for brevity. No functional change intended. Signed-off-by: Fuad Tabba <tabba@xxxxxxxxxx> --- include/kvm/util.h | 2 +- util/util.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/kvm/util.h b/include/kvm/util.h index b0c3684..61a205b 100644 --- a/include/kvm/util.h +++ b/include/kvm/util.h @@ -140,6 +140,6 @@ static inline int pow2_size(unsigned long x) } struct kvm; -void *mmap_anon_or_hugetlbfs(struct kvm *kvm, const char *hugetlbfs_path, u64 size); +void *mmap_anon_or_hugetlbfs(struct kvm *kvm, const char *htlbfs_path, u64 size); #endif /* KVM__UTIL_H */ diff --git a/util/util.c b/util/util.c index 093bd3b..22b64b6 100644 --- a/util/util.c +++ b/util/util.c @@ -118,14 +118,14 @@ static void *mmap_hugetlbfs(struct kvm *kvm, const char *htlbfs_path, u64 size) } /* This function wraps the decision between hugetlbfs map (if requested) or normal mmap */ -void *mmap_anon_or_hugetlbfs(struct kvm *kvm, const char *hugetlbfs_path, u64 size) +void *mmap_anon_or_hugetlbfs(struct kvm *kvm, const char *htlbfs_path, u64 size) { - if (hugetlbfs_path) + if (htlbfs_path) /* * We don't /need/ to map guest RAM from hugetlbfs, but we do so * if the user specifies a hugetlbfs path. */ - return mmap_hugetlbfs(kvm, hugetlbfs_path, size); + return mmap_hugetlbfs(kvm, htlbfs_path, size); else { kvm->ram_pagesize = getpagesize(); return mmap(NULL, size, PROT_RW, MAP_ANON_NORESERVE, -1, 0); -- 2.38.1.431.g37b22c650d-goog