Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31941
b: refs/heads/master
c: c1b4df5
h: refs/heads/master
i:
  31939: 2f83e80
v: v3
  • Loading branch information
Randy Dunlap authored and David S. Miller committed Jul 4, 2006
1 parent 61e29c2 commit 8e0ab2b
Show file tree
Hide file tree
Showing 94 changed files with 2,914 additions and 4,559 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f7d57e42e7ebd085133506ef6325e70e822196dc
refs/heads/master: c1b4df5d2a5b1a9c037fe3b2e42804cf1267c750
16 changes: 0 additions & 16 deletions trunk/Documentation/scsi/ChangeLog.megaraid_sas
Original file line number Diff line number Diff line change
@@ -1,20 +1,4 @@

1 Release Date : Sun May 14 22:49:52 PDT 2006 - Sumant Patro <Sumant.Patro@lsil.com>
2 Current Version : 00.00.03.01
3 Older Version : 00.00.02.04

i. Added support for ZCR controller.

New device id 0x413 added.

ii. Bug fix : Disable controller interrupt before firing INIT cmd to FW.

Interrupt is enabled after required initialization is over.
This is done to ensure that driver is ready to handle interrupts when
it is generated by the controller.

-Sumant Patro <Sumant.Patro@lsil.com>

1 Release Date : Wed Feb 03 14:31:44 PST 2006 - Sumant Patro <Sumant.Patro@lsil.com>
2 Current Version : 00.00.02.04
3 Older Version : 00.00.02.04
Expand Down
33 changes: 12 additions & 21 deletions trunk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -309,9 +309,6 @@ CPPFLAGS := -D__KERNEL__ $(LINUXINCLUDE)

CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
-fno-strict-aliasing -fno-common
# Force gcc to behave correct even for buggy distributions
CFLAGS += $(call cc-option, -fno-stack-protector-all \
-fno-stack-protector)
AFLAGS := -D__ASSEMBLY__

# Read KERNELRELEASE from include/config/kernel.release (if it exists)
Expand Down Expand Up @@ -812,8 +809,8 @@ endif
# prepare2 creates a makefile if using a separate output directory
prepare2: prepare3 outputmakefile

prepare1: prepare2 include/linux/version.h include/linux/utsrelease.h \
include/asm include/config/auto.conf
prepare1: prepare2 include/linux/version.h include/asm \
include/config/auto.conf
ifneq ($(KBUILD_MODULES),)
$(Q)mkdir -p $(MODVERDIR)
$(Q)rm -f $(MODVERDIR)/*
Expand Down Expand Up @@ -848,26 +845,21 @@ include/asm:
# needs to be updated, so this check is forced on all builds

uts_len := 64
define filechk_utsrelease.h
if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \
exit 1; \
fi; \
(echo \#define UTS_RELEASE \"$(KERNELRELEASE)\";)
endef

define filechk_version.h
(echo \#define LINUX_VERSION_CODE $(shell \
expr $(VERSION) \* 65536 + $(PATCHLEVEL) \* 256 + $(SUBLEVEL)); \
echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';)
if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \
exit 1; \
fi; \
(echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"; \
echo \#define LINUX_VERSION_CODE `expr $(VERSION) \\* 65536 + $(PATCHLEVEL) \\* 256 + $(SUBLEVEL)`; \
echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))'; \
)
endef

include/linux/version.h: $(srctree)/Makefile FORCE
include/linux/version.h: $(srctree)/Makefile include/config/kernel.release FORCE
$(call filechk,version.h)

include/linux/utsrelease.h: include/config/kernel.release FORCE
$(call filechk,utsrelease.h)

# ---------------------------------------------------------------------------

PHONY += depend dep
Expand Down Expand Up @@ -960,8 +952,7 @@ CLEAN_FILES += vmlinux System.map \
# Directories & files removed with 'make mrproper'
MRPROPER_DIRS += include/config include2
MRPROPER_FILES += .config .config.old include/asm .version .old_version \
include/linux/autoconf.h include/linux/version.h \
include/linux/utsrelease.h \
include/linux/autoconf.h include/linux/version.h \
Module.symvers tags TAGS cscope*

# clean - Delete most, but leave enough to build external modules
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/alpha/boot/bootp.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/utsrelease.h>
#include <linux/version.h>
#include <linux/mm.h>

#include <asm/system.h>
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/alpha/boot/bootpz.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/utsrelease.h>
#include <linux/version.h>
#include <linux/mm.h>

#include <asm/system.h>
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/alpha/boot/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/utsrelease.h>
#include <linux/version.h>
#include <linux/mm.h>

#include <asm/system.h>
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/frv/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* 2 of the License, or (at your option) any later version.
*/

#include <linux/utsrelease.h>
#include <linux/version.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/delay.h>
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/i386/boot/setup.S
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
*/

#include <asm/segment.h>
#include <linux/utsrelease.h>
#include <linux/version.h>
#include <linux/compile.h>
#include <asm/boot.h>
#include <asm/e820.h>
Expand Down
6 changes: 2 additions & 4 deletions trunk/arch/i386/kernel/cpuid.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ static int cpuid_class_device_create(int i)
return err;
}

#ifdef CONFIG_HOTPLUG_CPU
static int cpuid_class_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
{
unsigned int cpu = (unsigned long)hcpu;
Expand All @@ -187,7 +186,6 @@ static struct notifier_block __cpuinitdata cpuid_class_cpu_notifier =
{
.notifier_call = cpuid_class_cpu_callback,
};
#endif /* !CONFIG_HOTPLUG_CPU */

static int __init cpuid_init(void)
{
Expand All @@ -210,7 +208,7 @@ static int __init cpuid_init(void)
if (err != 0)
goto out_class;
}
register_hotcpu_notifier(&cpuid_class_cpu_notifier);
register_cpu_notifier(&cpuid_class_cpu_notifier);

err = 0;
goto out;
Expand All @@ -235,7 +233,7 @@ static void __exit cpuid_exit(void)
class_device_destroy(cpuid_class, MKDEV(CPUID_MAJOR, cpu));
class_destroy(cpuid_class);
unregister_chrdev(CPUID_MAJOR, "cpu/cpuid");
unregister_hotcpu_notifier(&cpuid_class_cpu_notifier);
unregister_cpu_notifier(&cpuid_class_cpu_notifier);
}

module_init(cpuid_init);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/platforms/chrp/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <linux/reboot.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/utsrelease.h>
#include <linux/version.h>
#include <linux/adb.h>
#include <linux/module.h>
#include <linux/delay.h>
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/platforms/powermac/bootx_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/init.h>
#include <linux/utsrelease.h>
#include <linux/version.h>
#include <asm/sections.h>
#include <asm/prom.h>
#include <asm/page.h>
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/syslib/btext.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/init.h>
#include <linux/utsrelease.h>
#include <linux/version.h>

#include <asm/sections.h>
#include <asm/bootx.h>
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/x86_64/boot/setup.S
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*/

#include <asm/segment.h>
#include <linux/utsrelease.h>
#include <linux/version.h>
#include <linux/compile.h>
#include <asm/boot.h>
#include <asm/e820.h>
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/dma/ioatdma_registers.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
#define IOAT_CHANSTS_OFFSET 0x04 /* 64-bit Channel Status Register */
#define IOAT_CHANSTS_OFFSET_LOW 0x04
#define IOAT_CHANSTS_OFFSET_HIGH 0x08
#define IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR 0xFFFFFFFFFFFFFFC0
#define IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR 0xFFFFFFFFFFFFFFC0UL
#define IOAT_CHANSTS_SOFT_ERR 0x0000000000000010
#define IOAT_CHANSTS_DMA_TRANSFER_STATUS 0x0000000000000007
#define IOAT_CHANSTS_DMA_TRANSFER_STATUS_ACTIVE 0x0
Expand Down
Loading

0 comments on commit 8e0ab2b

Please sign in to comment.