You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
(9) |
Apr
(27) |
May
(5) |
Jun
(8) |
Jul
(50) |
Aug
(286) |
Sep
(2) |
Oct
(43) |
Nov
(4) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(79) |
Feb
(102) |
Mar
(29) |
Apr
(2) |
May
(22) |
Jun
(41) |
Jul
(11) |
Aug
(28) |
Sep
(58) |
Oct
(4) |
Nov
(18) |
Dec
(8) |
2002 |
Jan
(2) |
Feb
(2) |
Mar
(1) |
Apr
(478) |
May
(469) |
Jun
(78) |
Jul
(16) |
Aug
(2) |
Sep
(7) |
Oct
(47) |
Nov
(5) |
Dec
(227) |
2003 |
Jan
(155) |
Feb
(188) |
Mar
(160) |
Apr
(172) |
May
(41) |
Jun
(205) |
Jul
(104) |
Aug
(289) |
Sep
(31) |
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:02
|
Update of /cvsroot/linux-vax/kernel-2.5/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv3146/kernel Removed Files: platform.c Log Message: Merge with 2.5.55 --- platform.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 23:14:09
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv9359/arch/vax/kernel Modified Files: time.c Log Message: BIN_TO_BCD and BCD_TO_BIN now defined in linux/bcd.h Index: time.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/time.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- time.c 20 Jun 2003 00:19:57 -0000 1.9 +++ time.c 16 Jul 2003 23:14:05 -0000 1.10 @@ -23,6 +23,7 @@ #include <linux/interrupt.h> #include <linux/init.h> #include <linux/time.h> +#include <linux/bcd.h> #include <asm/irq.h> #include <asm/mtpr.h> |
From: Kenn H. <ke...@us...> - 2003-07-16 23:03:31
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char In directory sc8-pr-cvs1:/tmp/cvs-serv7798/drivers/char Modified Files: dz.c Log Message: Merge with 2.5.54 Index: dz.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/dz.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- dz.c 15 Jun 2003 23:29:22 -0000 1.9 +++ dz.c 16 Jul 2003 23:03:26 -0000 1.10 @@ -1461,9 +1461,10 @@ printk("ttyS%02d at 0x%08x (irq = %d)\n", info->line, info->port, SERIAL); #endif - tty_register_devfs(&serial_driver, 0, + + tty_register_device(&serial_driver, serial_driver.minor_start + info->line); - tty_register_devfs(&callout_driver, 0, + tty_register_device(&callout_driver, callout_driver.minor_start + info->line); } |
From: Kenn H. <ke...@us...> - 2003-07-16 23:00:01
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi In directory sc8-pr-cvs1:/tmp/cvs-serv7128/drivers/scsi Removed Files: blz1230.h blz2060.h cyberstorm.h cyberstormII.h dec_esp.h fastlane.h jazz_esp.h mac_esp.h mca_53c9x.h oktagon_esp.h sun3x_esp.h Log Message: Merge with 2.5.54 --- blz1230.h DELETED --- --- blz2060.h DELETED --- --- cyberstorm.h DELETED --- --- cyberstormII.h DELETED --- --- dec_esp.h DELETED --- --- fastlane.h DELETED --- --- jazz_esp.h DELETED --- --- mac_esp.h DELETED --- --- mca_53c9x.h DELETED --- --- oktagon_esp.h DELETED --- --- sun3x_esp.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:59:33
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv7054 Modified Files: Makefile Log Message: Merge with 2.5.54 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.61 retrieving revision 1.62 diff -u -r1.61 -r1.62 --- Makefile 16 Jul 2003 22:27:38 -0000 1.61 +++ Makefile 16 Jul 2003 22:59:25 -0000 1.62 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 53 +SUBLEVEL = 54 EXTRAVERSION = # *DOCUMENTATION* @@ -203,7 +203,7 @@ .PHONY: scripts scripts: - $(Q)$(MAKE) -f scripts/Makefile.build obj=scripts + $(Q)$(MAKE) $(build)=scripts # Objects we will link into vmlinux / subdirs we need to visit # --------------------------------------------------------------------------- @@ -313,9 +313,9 @@ set -e $(if $(filter .tmp_kallsyms%,$^),, echo ' Generating build number' - . scripts/mkversion > .tmp_version + . $(src)/scripts/mkversion > .tmp_version mv -f .tmp_version .version - $(Q)$(MAKE) -f scripts/Makefile.build obj=init + $(Q)$(MAKE) $(build)=init ) $(call cmd,vmlinux__) echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd @@ -329,7 +329,7 @@ ifdef CONFIG_SMP define rule_vmlinux $(rule_vmlinux_no_percpu) - $(AWK) -f scripts/per-cpu-check.awk < System.map + $(AWK) -f $(srctree)/scripts/per-cpu-check.awk < System.map endef else define rule_vmlinux @@ -385,7 +385,7 @@ .PHONY: $(SUBDIRS) $(SUBDIRS): .hdepend prepare - $(Q)$(MAKE) -f scripts/Makefile.build obj=$@ + $(Q)$(MAKE) $(build)=$@ # Things we need done before we descend to build or make # module versions are listed in "prepare" @@ -408,17 +408,19 @@ # --------------------------------------------------------------------------- %.s: %.c scripts FORCE - $(Q)$(MAKE) -f scripts/Makefile.build obj=$(@D) $@ + $(Q)$(MAKE) $(build)=$(@D) $@ %.i: %.c scripts FORCE - $(Q)$(MAKE) -f scripts/Makefile.build obj=$(@D) $@ + $(Q)$(MAKE) $(build)=$(@D) $@ %.o: %.c scripts FORCE - $(Q)$(MAKE) -f scripts/Makefile.build obj=$(@D) $@ + $(Q)$(MAKE) $(build)=$(@D) $@ +%.ko: scripts FORCE + $(Q)$(MAKE) $(build)=$(@D) $@ %.lst: %.c scripts FORCE - $(Q)$(MAKE) -f scripts/Makefile.build obj=$(@D) $@ + $(Q)$(MAKE) $(build)=$(@D) $@ %.s: %.S scripts FORCE - $(Q)$(MAKE) -f scripts/Makefile.build obj=$(@D) $@ + $(Q)$(MAKE) $(build)=$(@D) $@ %.o: %.S scripts FORCE - $(Q)$(MAKE) -f scripts/Makefile.build obj=$(@D) $@ + $(Q)$(MAKE) $(build)=$(@D) $@ # FIXME: The asm symlink changes when $(ARCH) changes. That's # hard to detect, but I suppose "make mrproper" is a good idea @@ -439,7 +441,7 @@ # with it and forgot to run make oldconfig include/linux/autoconf.h: .config - $(Q)$(MAKE) -f scripts/Makefile.build obj=scripts/kconfig scripts/kconfig/conf + $(Q)$(MAKE) $(build)=scripts/kconfig scripts/kconfig/conf ./scripts/kconfig/conf -s arch/$(ARCH)/Kconfig # Generate some files @@ -619,7 +621,7 @@ tar -cvz $(RCS_TAR_IGNORE) -f $(KERNELPATH).tar.gz $(KERNELPATH)/. ; \ rm $(KERNELPATH) ; \ cd $(TOPDIR) ; \ - . scripts/mkversion > .version ; \ + $(CONFIG_SHELL) $(srctree)/scripts/mkversion > .version ; \ rpm -ta $(TOPDIR)/../$(KERNELPATH).tar.gz ; \ rm $(TOPDIR)/../$(KERNELPATH).tar.gz @@ -657,13 +659,13 @@ make_with_config scripts/kconfig/conf scripts/kconfig/mconf scripts/kconfig/qconf: scripts/fixdep FORCE - $(Q)$(MAKE) -f scripts/Makefile.build obj=scripts/kconfig $@ + $(Q)$(MAKE) $(build)=scripts/kconfig $@ xconfig: scripts/kconfig/qconf ./scripts/kconfig/qconf arch/$(ARCH)/Kconfig menuconfig: scripts/kconfig/mconf - $(Q)$(MAKE) -f scripts/Makefile.build obj=scripts/lxdialog + $(Q)$(MAKE) $(build)=scripts/lxdialog ./scripts/kconfig/mconf arch/$(ARCH)/Kconfig config: scripts/kconfig/conf @@ -719,7 +721,7 @@ clean-dirs += $(ALL_SUBDIRS) Documentation/DocBook scripts $(addprefix _clean_,$(clean-dirs)): - $(Q)$(MAKE) -f scripts/Makefile.clean obj=$(patsubst _clean_%,%,$@) + $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) quiet_cmd_rmclean = RM $$(CLEAN_FILES) cmd_rmclean = rm -f $(CLEAN_FILES) @@ -811,7 +813,8 @@ @$(MAKE) --no-print-directory -f Documentation/DocBook/Makefile dochelp @echo '' @echo 'Architecture specific targets ($(ARCH)):' - @$(MAKE) --no-print-directory -f arch/$(ARCH)/boot/Makefile archhelp + @$(if $(archhelp),$(archhelp),\ + echo ' No architecture specific help defined for $(ARCH)') @echo '' @echo 'Execute "make" or "make all" to build all targets marked with [*] ' @echo 'For further info browse Documentation/kbuild/*' @@ -820,7 +823,7 @@ # Documentation targets # --------------------------------------------------------------------------- sgmldocs psdocs pdfdocs htmldocs: scripts - $(Q)$(MAKE) -f scripts/Makefile.build obj=Documentation/DocBook $@ + $(Q)$(MAKE) $(build)=Documentation/DocBook $@ # Scripts to check various things for consistency # --------------------------------------------------------------------------- @@ -908,9 +911,20 @@ mv -f $@.tmp $@; \ fi endef + +# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj= +# Usage: +# $(Q)$(MAKE) $(build)=dir +build := -f scripts/Makefile.build obj + +# Shorthand for $(Q)$(MAKE) scripts/Makefile.clean obj=dir +# Usage: +# $(Q)$(MAKE) $(clean)=dir +clean := -f scripts/Makefile.clean obj + # $(call descend,<dir>,<target>) # Recursively call a sub-make in <dir> with target <target> - +# Usage is deprecated, because make do not see this as an invocation of make. descend =$(Q)$(MAKE) -f scripts/Makefile.build obj=$(1) $(2) FORCE: |
From: Kenn H. <ke...@us...> - 2003-07-16 22:59:30
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char In directory sc8-pr-cvs1:/tmp/cvs-serv7054/drivers/char Modified Files: tty_io.c Log Message: Merge with 2.5.54 Index: tty_io.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/tty_io.c,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- tty_io.c 7 Jul 2003 23:47:31 -0000 1.15 +++ tty_io.c 16 Jul 2003 22:59:25 -0000 1.16 @@ -90,6 +90,7 @@ #include <linux/init.h> #include <linux/module.h> #include <linux/smp_lock.h> +#include <linux/device.h> #include <asm/uaccess.h> #include <asm/system.h> @@ -158,13 +159,6 @@ extern void tx3912_rs_init(void); extern void hvc_console_init(void); -#ifndef MIN -#define MIN(a,b) ((a) < (b) ? (a) : (b)) -#endif -#ifndef MAX -#define MAX(a,b) ((a) < (b) ? (b) : (a)) -#endif - static struct tty_struct *alloc_tty_struct(void) { struct tty_struct *tty; @@ -713,7 +707,7 @@ unlock_kernel(); } else { for (;;) { - unsigned long size = MAX(PAGE_SIZE*2,16384); + unsigned long size = max((unsigned long)PAGE_SIZE*2, 16384UL); if (size > count) size = count; lock_kernel(); @@ -1351,7 +1345,7 @@ set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */ minor -= driver->minor_start; devpts_pty_new(driver->other->name_base + minor, MKDEV(driver->other->major, minor + driver->other->minor_start)); - tty_register_devfs(&pts_driver[major], DEVFS_FL_DEFAULT, + tty_register_device(&pts_driver[major], pts_driver[major].minor_start + minor); noctty = 1; goto init_dev_done; @@ -2038,9 +2032,6 @@ tty->driver.write(tty, 0, &ch, 1); } -/* - * Register a tty device described by <driver>, with minor number <minor>. - */ void tty_register_devfs (struct tty_driver *driver, unsigned int flags, unsigned minor) { #ifdef CONFIG_DEVFS_FS @@ -2077,8 +2068,21 @@ devfs_remove(driver->name, minor-driver->minor_start+driver->name_base); } -EXPORT_SYMBOL(tty_register_devfs); -EXPORT_SYMBOL(tty_unregister_devfs); +/* + * Register a tty device described by <driver>, with minor number <minor>. + */ +void tty_register_device (struct tty_driver *driver, unsigned minor) +{ + tty_register_devfs(driver, 0, minor); +} + +void tty_unregister_device (struct tty_driver *driver, unsigned minor) +{ + tty_unregister_devfs(driver, minor); +} + +EXPORT_SYMBOL(tty_register_device); +EXPORT_SYMBOL(tty_unregister_device); /* * Called by a tty driver to register itself. @@ -2104,7 +2108,7 @@ if ( !(driver->flags & TTY_DRIVER_NO_DEVFS) ) { for(i = 0; i < driver->num; i++) - tty_register_devfs(driver, 0, driver->minor_start + i); + tty_register_device(driver, driver->minor_start + i); } proc_tty_register_driver(driver); return error; @@ -2159,7 +2163,7 @@ driver->termios_locked[i] = NULL; kfree(tp); } - tty_unregister_devfs(driver, driver->minor_start + i); + tty_unregister_device(driver, driver->minor_start + i); } proc_tty_unregister_driver(driver); return 0; @@ -2263,12 +2267,19 @@ extern int vty_init(void); #endif +struct device_class tty_devclass = { + .name = "tty", +}; +EXPORT_SYMBOL(tty_devclass); + /* * Ok, now we can initialize the rest of the tty devices and can count * on memory allocations, interrupts etc.. */ void __init tty_init(void) { + devclass_register(&tty_devclass); + /* * dev_tty_driver and dev_console_driver are actually magic * devices which get redirected at open time. Nevertheless, |
From: Kenn H. <ke...@us...> - 2003-07-16 22:59:30
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi In directory sc8-pr-cvs1:/tmp/cvs-serv7054/drivers/scsi Modified Files: Makefile Log Message: Merge with 2.5.54 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/scsi/Makefile,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- Makefile 9 Jul 2003 23:56:58 -0000 1.18 +++ Makefile 16 Jul 2003 22:59:25 -0000 1.19 @@ -58,6 +58,7 @@ obj-$(CONFIG_SCSI_AHA1542) += aha1542.o obj-$(CONFIG_SCSI_AHA1740) += aha1740.o obj-$(CONFIG_SCSI_AIC7XXX) += aic7xxx/ +obj-$(CONFIG_SCSI_AIC79XX) += aic7xxx/ obj-$(CONFIG_SCSI_AACRAID) += aacraid/ obj-$(CONFIG_SCSI_AIC7XXX_OLD) += aic7xxx_old.o obj-$(CONFIG_SCSI_IPS) += ips.o |
From: Kenn H. <ke...@us...> - 2003-07-16 22:57:30
|
Update of /cvsroot/linux-vax/kernel-2.5/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv6690 Modified Files: Makefile.build Log Message: Merge with 2.5.54 Index: Makefile.build =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/scripts/Makefile.build,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- Makefile.build 7 Jul 2003 23:48:09 -0000 1.5 +++ Makefile.build 16 Jul 2003 22:57:24 -0000 1.6 @@ -109,7 +109,7 @@ quiet_cmd_cc_lst_c = MKLST $@ cmd_cc_lst_c = $(CC) $(c_flags) -g -c -o $*.o $< && \ - $(CONFIG_SHELL) $(src)/scripts/makelst $*.o \ + $(CONFIG_SHELL) $(srctree)/scripts/makelst $*.o \ System.map $(OBJDUMP) > $@ %.lst: %.c FORCE @@ -289,7 +289,7 @@ .PHONY: $(subdir-ym) $(subdir-ym): - $(Q)$(MAKE) -f scripts/Makefile.build obj=$@ + $(Q)$(MAKE) $(build)=$@ # Add FORCE to the prequisites of a target to force it to be always rebuilt. # --------------------------------------------------------------------------- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:53:54
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/video/console In directory sc8-pr-cvs1:/tmp/cvs-serv6138/drivers/video/console Removed Files: fbcon-sti.c font.h sti.h Log Message: Merge with 2.5.54 --- fbcon-sti.c DELETED --- --- font.h DELETED --- --- sti.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:53:53
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1:/tmp/cvs-serv6138/include/linux Removed Files: i2c-elektor.h Log Message: Merge with 2.5.54 --- i2c-elektor.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:53:53
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-x86_64 In directory sc8-pr-cvs1:/tmp/cvs-serv6138/include/asm-x86_64 Removed Files: dma-mapping.h Log Message: Merge with 2.5.54 --- dma-mapping.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:53:53
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/um/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv6138/arch/um/kernel Removed Files: exec_user.c setup.c uaccess_user.c Log Message: Merge with 2.5.54 --- exec_user.c DELETED --- --- setup.c DELETED --- --- uaccess_user.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:53:53
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/video In directory sc8-pr-cvs1:/tmp/cvs-serv6138/drivers/video Removed Files: tgafb.h Log Message: Merge with 2.5.54 --- tgafb.h DELETED --- |
Update of /cvsroot/linux-vax/kernel-2.5/arch/um/ptproxy In directory sc8-pr-cvs1:/tmp/cvs-serv6138/arch/um/ptproxy Removed Files: Makefile proxy.c ptproxy.h ptrace.c sysdep.c sysdep.h wait.c wait.h Log Message: Merge with 2.5.54 --- Makefile DELETED --- --- proxy.c DELETED --- --- ptproxy.h DELETED --- --- ptrace.c DELETED --- --- sysdep.c DELETED --- --- sysdep.h DELETED --- --- wait.c DELETED --- --- wait.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:53:52
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/um/include In directory sc8-pr-cvs1:/tmp/cvs-serv6138/arch/um/include Removed Files: debug.h Log Message: Merge with 2.5.54 --- debug.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:53:52
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/um/boot In directory sc8-pr-cvs1:/tmp/cvs-serv6138/arch/um/boot Removed Files: Makefile Log Message: Merge with 2.5.54 --- Makefile DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:53:52
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/um In directory sc8-pr-cvs1:/tmp/cvs-serv6138/arch/um Removed Files: config_block.in config_char.in config_net.in config_scsi.in Log Message: Merge with 2.5.54 --- config_block.in DELETED --- --- config_char.in DELETED --- --- config_net.in DELETED --- --- config_scsi.in DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:53:52
|
Update of /cvsroot/linux-vax/kernel-2.5/include/video In directory sc8-pr-cvs1:/tmp/cvs-serv6138/include/video Added Files: font.h Log Message: Merge with 2.5.54 |
From: Kenn H. <ke...@us...> - 2003-07-16 22:27:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1:/tmp/cvs-serv2131/include/linux Modified Files: elf.h Log Message: Merge with 2.5.53 Index: elf.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/linux/elf.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- elf.h 7 Jul 2003 23:47:32 -0000 1.8 +++ elf.h 16 Jul 2003 22:27:39 -0000 1.9 @@ -92,6 +92,9 @@ */ #define EM_ALPHA 0x9026 +/* Bogus old v850 magic number, used by old tools. */ +#define EM_CYGNUS_V850 0x9080 + /* * This is the old interim value for S/390 architecture */ @@ -449,6 +452,27 @@ #define R_390_GOTENT 26 /* 32 bit PC rel. to GOT entry >> 1. */ /* Keep this the last entry. */ #define R_390_NUM 27 + +/* x86-64 relocation types */ +#define R_X86_64_NONE 0 /* No reloc */ +#define R_X86_64_64 1 /* Direct 64 bit */ +#define R_X86_64_PC32 2 /* PC relative 32 bit signed */ +#define R_X86_64_GOT32 3 /* 32 bit GOT entry */ +#define R_X86_64_PLT32 4 /* 32 bit PLT address */ +#define R_X86_64_COPY 5 /* Copy symbol at runtime */ +#define R_X86_64_GLOB_DAT 6 /* Create GOT entry */ +#define R_X86_64_JUMP_SLOT 7 /* Create PLT entry */ +#define R_X86_64_RELATIVE 8 /* Adjust by program base */ +#define R_X86_64_GOTPCREL 9 /* 32 bit signed pc relative + offset to GOT */ +#define R_X86_64_32 10 /* Direct 32 bit zero extended */ +#define R_X86_64_32S 11 /* Direct 32 bit sign extended */ +#define R_X86_64_16 12 /* Direct 16 bit zero extended */ +#define R_X86_64_PC16 13 /* 16 bit sign extended pc relative */ +#define R_X86_64_8 14 /* Direct 8 bit sign extended */ +#define R_X86_64_PC8 15 /* 8 bit sign extended pc relative */ + +#define R_X86_64_NUM 16 /* s390 relocations defined by the ABIs */ #define R_390_NONE 0 /* No reloc. */ |
From: Kenn H. <ke...@us...> - 2003-07-16 22:27:43
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/v850 In directory sc8-pr-cvs1:/tmp/cvs-serv2131/arch/v850 Removed Files: rte_ma1_cb-ksram.ld Log Message: Merge with 2.5.53 --- rte_ma1_cb-ksram.ld DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:27:43
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ia64/sn/configs/sn1 In directory sc8-pr-cvs1:/tmp/cvs-serv2131/arch/ia64/sn/configs/sn1 Removed Files: defconfig-bigsur-mp defconfig-bigsur-sp defconfig-dig-mp defconfig-dig-sp defconfig-generic-mp defconfig-generic-sp defconfig-hp-sp defconfig-prom-medusa defconfig-sn1-mp defconfig-sn1-mp-modules defconfig-sn1-mp-syn1-0 defconfig-sn1-sp Log Message: Merge with 2.5.53 --- defconfig-bigsur-mp DELETED --- --- defconfig-bigsur-sp DELETED --- --- defconfig-dig-mp DELETED --- --- defconfig-dig-sp DELETED --- --- defconfig-generic-mp DELETED --- --- defconfig-generic-sp DELETED --- --- defconfig-hp-sp DELETED --- --- defconfig-prom-medusa DELETED --- --- defconfig-sn1-mp DELETED --- --- defconfig-sn1-mp-modules DELETED --- --- defconfig-sn1-mp-syn1-0 DELETED --- --- defconfig-sn1-sp DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:27:43
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi/aic7xxx In directory sc8-pr-cvs1:/tmp/cvs-serv2131/drivers/scsi/aic7xxx Removed Files: Kconfig aic7770_linux.c aic7xxx_linux.c aic7xxx_linux_host.h aic7xxx_linux_pci.c Log Message: Merge with 2.5.53 --- Kconfig DELETED --- --- aic7770_linux.c DELETED --- --- aic7xxx_linux.c DELETED --- --- aic7xxx_linux_host.h DELETED --- --- aic7xxx_linux_pci.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:27:43
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/x86_64/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv2131/arch/x86_64/kernel Removed Files: bootflag.c mtrr.c Log Message: Merge with 2.5.53 --- bootflag.c DELETED --- --- mtrr.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:27:42
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ia64/sn/configs/sn2 In directory sc8-pr-cvs1:/tmp/cvs-serv2131/arch/ia64/sn/configs/sn2 Removed Files: defconfig-dig-numa defconfig-sn2-dig-mp defconfig-sn2-dig-sp defconfig-sn2-mp defconfig-sn2-mp-modules defconfig-sn2-prom-medusa defconfig-sn2-sp Log Message: Merge with 2.5.53 --- defconfig-dig-numa DELETED --- --- defconfig-sn2-dig-mp DELETED --- --- defconfig-sn2-dig-sp DELETED --- --- defconfig-sn2-mp DELETED --- --- defconfig-sn2-mp-modules DELETED --- --- defconfig-sn2-prom-medusa DELETED --- --- defconfig-sn2-sp DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-16 22:27:42
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/i386/mach-voyager In directory sc8-pr-cvs1:/tmp/cvs-serv2131/arch/i386/mach-voyager Removed Files: do_timer.h entry_arch.h irq_vectors.h setup_arch_post.h setup_arch_pre.h Log Message: Merge with 2.5.53 --- do_timer.h DELETED --- --- entry_arch.h DELETED --- --- irq_vectors.h DELETED --- --- setup_arch_post.h DELETED --- --- setup_arch_pre.h DELETED --- |