summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2007-08-04 21:02:22 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:27:12 +0200
commitbaf29c7a7fe74d8ca799c869440f7b7cd5a33b8a (patch)
tree1aa311c95f00f763667f2d8fb2c15a115825775a /ChangeLog
parent2d38d0f995f30c5f04dcc0c10052f6c335f99987 (diff)
2007-08-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
* linux/dev/arch/i386/kernel/irq.c: Include <asm/hardirq.h>. (local_bh_count, local_irq_count, global_irq_holder, global_irq_lock) (global_irq_count, check_smp_invalidate, show, wait_on_bh) (wait_on_irq, synchronize_bh, synchronize_irq, get_irqlock) (__global_cli, __global_sti, __global_save_flags) (__global_restore_flags): New variables and functions from Linux 2.2 * linux/src/drivers/net/3c515.c (test_and_set_bit): Remove macro. * linux/src/drivers/net/de4x5.c (test_and_set_bit): Remove macro. * linux/src/drivers/net/eth16i.c (test_and_set_bit): Remove macro. * linux/src/drivers/net/kern_compat.h (test_and_set_bit): Remove macro. * linux/src/drivers/net/pcnet32.c (test_and_set_bit): Remove macro. * linux/src/include/linux/compatmac.h (test_and_set_bit) (test_and_clear_bit): Remove macro. * linux/src/include/asm-i386/atomic.h (atomic_read): New macro. * linux/src/include/asm-i386/bitops.h (test_and_set_bit) (test_and_clear_bit, test_and_change_bit): New inline functions. * linux/src/include/asm-i386/hardirq.h (local_bh_count): New declaration. * linux/src/include/linux/tasks.h (NR_CPUS): Set to NCPUS. (NO_PROC_ID): New macro.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog20
1 files changed, 20 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 739a2e2d..2aadcd22 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -33,6 +33,26 @@
(NCPUS): Set to $mach_ncpus.
[$mach_ncpus > 1] (MULTIPROCESSOR): Set to 1.
* linux/configfrag.ac [$mach_ncpus > 1] (__SMP__): Define.
+ * linux/dev/arch/i386/kernel/irq.c: Include <asm/hardirq.h>.
+ (local_bh_count, local_irq_count, global_irq_holder, global_irq_lock)
+ (global_irq_count, check_smp_invalidate, show, wait_on_bh)
+ (wait_on_irq, synchronize_bh, synchronize_irq, get_irqlock)
+ (__global_cli, __global_sti, __global_save_flags)
+ (__global_restore_flags): New variables and functions from Linux 2.2
+ * linux/src/drivers/net/3c515.c (test_and_set_bit): Remove macro.
+ * linux/src/drivers/net/de4x5.c (test_and_set_bit): Remove macro.
+ * linux/src/drivers/net/eth16i.c (test_and_set_bit): Remove macro.
+ * linux/src/drivers/net/kern_compat.h (test_and_set_bit): Remove macro.
+ * linux/src/drivers/net/pcnet32.c (test_and_set_bit): Remove macro.
+ * linux/src/include/linux/compatmac.h (test_and_set_bit)
+ (test_and_clear_bit): Remove macro.
+ * linux/src/include/asm-i386/atomic.h (atomic_read): New macro.
+ * linux/src/include/asm-i386/bitops.h (test_and_set_bit)
+ (test_and_clear_bit, test_and_change_bit): New inline functions.
+ * linux/src/include/asm-i386/hardirq.h (local_bh_count): New
+ declaration.
+ * linux/src/include/linux/tasks.h (NR_CPUS): Set to NCPUS.
+ (NO_PROC_ID): New macro.
2007-07-08 Samuel Thibault <samuel.thibault@ens-lyon.org>