Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x86/x86 Fix wrong function names in messages by usi...



details:   https://anonhg.NetBSD.org/src/rev/1e958517c3a2
branches:  trunk
changeset: 761260:1e958517c3a2
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sat Jan 22 14:01:27 2011 +0000

description:
Fix wrong function names in messages by using __func__.  PR kern/44431

diffstat:

 sys/arch/x86/x86/intr.c |  25 +++++++++++++------------
 1 files changed, 13 insertions(+), 12 deletions(-)

diffs (87 lines):

diff -r 7e5cf7b4cd2d -r 1e958517c3a2 sys/arch/x86/x86/intr.c
--- a/sys/arch/x86/x86/intr.c   Sat Jan 22 13:43:07 2011 +0000
+++ b/sys/arch/x86/x86/intr.c   Sat Jan 22 14:01:27 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: intr.c,v 1.69 2010/11/24 14:56:18 cegger Exp $ */
+/*     $NetBSD: intr.c,v 1.70 2011/01/22 14:01:27 tsutsui Exp $        */
 
 /*-
  * Copyright (c) 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -133,7 +133,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.69 2010/11/24 14:56:18 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.70 2011/01/22 14:01:27 tsutsui Exp $");
 
 #include "opt_intrdebug.h"
 #include "opt_multiprocessor.h"
@@ -694,7 +694,7 @@
 
 #ifdef DIAGNOSTIC
        if (legacy_irq != -1 && (legacy_irq < 0 || legacy_irq > 15))
-               panic("intr_establish: bad legacy IRQ value");
+               panic("%s: bad legacy IRQ value", __func__);
 
        if (legacy_irq == -1 && pic == &i8259_pic)
                panic("intr_establish: non-legacy IRQ on i8259");
@@ -702,7 +702,7 @@
 
        ih = kmem_alloc(sizeof(*ih), KM_SLEEP);
        if (ih == NULL) {
-               printf("intr_establish: can't allocate handler info\n");
+               printf("%s: can't allocate handler info\n", __func__);
                return NULL;
        }
 
@@ -722,9 +722,9 @@
            source->is_pic->pic_type != pic->pic_type) {
                mutex_exit(&cpu_lock);
                kmem_free(ih, sizeof(*ih));
-               printf("intr_establish: can't share intr source between "
+               printf("%s: can't share intr source between "
                       "different PIC types (legacy_irq %d pin %d slot %d)\n",
-                   legacy_irq, pin, slot);
+                   __func__, legacy_irq, pin, slot);
                return NULL;
        }
 
@@ -745,15 +745,16 @@
                        mutex_exit(&cpu_lock);
                        kmem_free(ih, sizeof(*ih));
                        intr_source_free(ci, slot, pic, idt_vec);
-                       printf("intr_establish: pic %s pin %d: can't share "
-                              "type %d with %d\n", pic->pic_name, pin,
+                       printf("%s: pic %s pin %d: can't share "
+                              "type %d with %d\n",
+                               __func__, pic->pic_name, pin,
                                source->is_type, type);
                        return NULL;
                }
                break;
        default:
-               panic("intr_establish: bad intr type %d for pic %s pin %d\n",
-                   source->is_type, pic->pic_name, pin);
+               panic("%s: bad intr type %d for pic %s pin %d\n",
+                   __func__, source->is_type, pic->pic_name, pin);
                /* NOTREACHED */
        }
 
@@ -859,7 +860,7 @@
                ;
        if (q == NULL) {
                x86_write_psl(psl);
-               panic("intr_disestablish: handler not registered");
+               panic("%s: handler not registered", __func__);
                /* NOTREACHED */
        }
 
@@ -919,7 +920,7 @@
 #endif
 
        if (ih == 0)
-               panic("pci_intr_string: bogus handle 0x%x", ih);
+               panic("%s: bogus handle 0x%x", __func__, ih);
 
 
 #if NIOAPIC > 0



Home | Main Index | Thread Index | Old Index