Changeset 897fd8f1 in mainline for kernel/arch
- Timestamp:
- 2017-12-19T18:18:15Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 55b56f4
- Parents:
- 7f11dc6
- Location:
- kernel/arch
- Files:
-
- 3 edited
-
ia32/src/smp/smp.c (modified) (2 diffs)
-
sparc64/src/smp/sun4u/smp.c (modified) (1 diff)
-
sparc64/src/smp/sun4v/smp.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/smp/smp.c
r7f11dc6 r897fd8f1 39 39 #include <arch/boot/boot.h> 40 40 #include <assert.h> 41 #include <errno.h> 41 42 #include <genarch/acpi/acpi.h> 42 43 #include <genarch/acpi/madt.h> … … 178 179 */ 179 180 if (waitq_sleep_timeout(&ap_completion_wq, 1000000, 180 SYNCH_FLAGS_NONE ) == ESYNCH_TIMEOUT) {181 SYNCH_FLAGS_NONE, NULL) == ETIMEOUT) { 181 182 log(LF_ARCH, LVL_NOTE, "%s: waiting for cpu%u " 182 183 "(APIC ID = %d) timed out", __FUNCTION__, -
kernel/arch/sparc64/src/smp/sun4u/smp.c
r7f11dc6 r897fd8f1 106 106 waking_up_mid = mid; 107 107 108 if (waitq_sleep_timeout(&ap_completion_wq, 1000000, SYNCH_FLAGS_NONE) ==109 ESYNCH_TIMEOUT)108 if (waitq_sleep_timeout(&ap_completion_wq, 1000000, 109 SYNCH_FLAGS_NONE, NULL) == ETIMEOUT) 110 110 log(LF_ARCH, LVL_NOTE, "%s: waiting for processor (mid = %" PRIu32 111 111 ") timed out", __func__, mid); -
kernel/arch/sparc64/src/smp/sun4v/smp.c
r7f11dc6 r897fd8f1 373 373 #endif 374 374 375 if (waitq_sleep_timeout(&ap_completion_wq, 10000000, SYNCH_FLAGS_NONE) ==376 ESYNCH_TIMEOUT)375 if (waitq_sleep_timeout(&ap_completion_wq, 10000000, 376 SYNCH_FLAGS_NONE, NULL) == ETIMEOUT) 377 377 printf("%s: waiting for processor (cpuid = %" PRIu64 ") timed out\n", 378 378 __func__, cpuid);
Note:
See TracChangeset
for help on using the changeset viewer.
