diff options
author | Damien Zammit <damien@zamaudio.com> | 2023-02-13 08:50:02 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-14 00:07:22 +0100 |
commit | b6b163bdb38ce0ced56ecd9769232a09daa4b215 (patch) | |
tree | b7afa4d77d6b5d8441b6954b2ad4e84b05f782b8 /i386 | |
parent | 544071f200124fafd4fe7628c54f124e8577ca82 (diff) | |
download | gnumach-b6b163bdb38ce0ced56ecd9769232a09daa4b215.tar.gz gnumach-b6b163bdb38ce0ced56ecd9769232a09daa4b215.tar.bz2 gnumach-b6b163bdb38ce0ced56ecd9769232a09daa4b215.zip |
Remove verbose debug printfs
Message-Id: <20230213084919.1157074-5-damien@zamaudio.com>
Diffstat (limited to 'i386')
-rw-r--r-- | i386/i386/mp_desc.c | 1 | ||||
-rw-r--r-- | i386/i386/smp.c | 1 | ||||
-rw-r--r-- | i386/intel/pmap.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/i386/i386/mp_desc.c b/i386/i386/mp_desc.c index 446fedb5..e6fcbf62 100644 --- a/i386/i386/mp_desc.c +++ b/i386/i386/mp_desc.c @@ -199,7 +199,6 @@ cpu_control(int cpu, const int *info, unsigned int count) void interrupt_processor(int cpu) { - printf("interrupt cpu %d\n",cpu); smp_pmap_update(apic_get_cpu_apic_id(cpu)); } diff --git a/i386/i386/smp.c b/i386/i386/smp.c index c6a62958..7441ffbb 100644 --- a/i386/i386/smp.c +++ b/i386/i386/smp.c @@ -53,7 +53,6 @@ void smp_pmap_update(unsigned apic_id) cpu_intr_save(&flags); - printf("IPI(%d>%u)\n", cpu_number(), apic_id); apic_send_ipi(NO_SHORTHAND, FIXED, PHYSICAL, ASSERT, EDGE, CALL_SINGLE_FUNCTION_BASE, apic_id); do { diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c index 40ddcd6a..0316d15a 100644 --- a/i386/intel/pmap.c +++ b/i386/intel/pmap.c @@ -3054,7 +3054,6 @@ void pmap_update_interrupt(void) int s; my_cpu = cpu_number(); - printf("PMAP(%d)\n", my_cpu); /* * Exit now if we're idle. We'll pick up the update request |