[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xen/common: Replace __FUNCTION__ with __func__
commit 27c8011629ab6cac447ac40cf228d7b1a751be89 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Fri Feb 3 20:51:11 2017 +0000 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Tue Feb 7 13:30:32 2017 +0000 xen/common: Replace __FUNCTION__ with __func__ __func__ is standard C99, whereas __FUNCTION__ is a GCCism. No functional change. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> --- xen/common/grant_table.c | 4 ++-- xen/common/libelf/libelf-loader.c | 4 ++-- xen/common/wait.c | 2 +- xen/include/acpi/platform/acgcc.h | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c index 1b7d236..d3ea805 100644 --- a/xen/common/grant_table.c +++ b/xen/common/grant_table.c @@ -3547,10 +3547,10 @@ static void gnttab_usage_print(struct domain *rd) static void gnttab_usage_print_all(unsigned char key) { struct domain *d; - printk("%s [ key '%c' pressed\n", __FUNCTION__, key); + printk("%s [ key '%c' pressed\n", __func__, key); for_each_domain ( d ) gnttab_usage_print(d); - printk("%s ] done\n", __FUNCTION__); + printk("%s ] done\n", __func__); } static int __init gnttab_usage_init(void) diff --git a/xen/common/libelf/libelf-loader.c b/xen/common/libelf/libelf-loader.c index a72cd8a..1644f16 100644 --- a/xen/common/libelf/libelf-loader.c +++ b/xen/common/libelf/libelf-loader.c @@ -536,12 +536,12 @@ uint64_t elf_lookup_addr(struct elf_binary * elf, const char *symbol) sym = elf_sym_by_name(elf, symbol); if ( !ELF_HANDLE_VALID(sym) ) { - elf_err(elf, "%s: not found: %s\n", __FUNCTION__, symbol); + elf_err(elf, "%s: not found: %s\n", __func__, symbol); return -1; } value = elf_uval(elf, sym, st_value); - elf_msg(elf, "%s: symbol \"%s\" at 0x%" PRIx64 "\n", __FUNCTION__, + elf_msg(elf, "%s: symbol \"%s\" at 0x%" PRIx64 "\n", __func__, symbol, value); return value; } diff --git a/xen/common/wait.c b/xen/common/wait.c index 4ac98c0..89cfc06 100644 --- a/xen/common/wait.c +++ b/xen/common/wait.c @@ -155,7 +155,7 @@ static void __prepare_to_wait(struct waitqueue_vcpu *wqv) if ( unlikely(wqv->esp == 0) ) { - gdprintk(XENLOG_ERR, "Stack too large in %s\n", __FUNCTION__); + gdprintk(XENLOG_ERR, "Stack too large in %s\n", __func__); domain_crash_synchronous(); } diff --git a/xen/include/acpi/platform/acgcc.h b/xen/include/acpi/platform/acgcc.h index 3bb5049..b355e98 100644 --- a/xen/include/acpi/platform/acgcc.h +++ b/xen/include/acpi/platform/acgcc.h @@ -46,7 +46,7 @@ /* Function name is used for debug output. Non-ANSI, compiler-dependent */ -#define ACPI_GET_FUNCTION_NAME __FUNCTION__ +#define ACPI_GET_FUNCTION_NAME __func__ /* * This macro is used to tag functions as "printf-like" because -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |