You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(11) |
Jun
(66) |
Jul
(16) |
Aug
(2) |
Sep
(7) |
Oct
(17) |
Nov
(1) |
Dec
(220) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(154) |
Feb
(167) |
Mar
(159) |
Apr
(172) |
May
(35) |
Jun
(58) |
Jul
(97) |
Aug
(285) |
Sep
(139) |
Oct
(252) |
Nov
(8) |
Dec
(3) |
2004 |
Jan
(13) |
Feb
(159) |
Mar
(136) |
Apr
(33) |
May
(50) |
Jun
(42) |
Jul
(140) |
Aug
(42) |
Sep
(199) |
Oct
(31) |
Nov
(55) |
Dec
|
2005 |
Jan
|
Feb
(12) |
Mar
(214) |
Apr
(119) |
May
(21) |
Jun
(2) |
Jul
(127) |
Aug
(10) |
Sep
(3) |
Oct
(24) |
Nov
(1) |
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
(45) |
May
(13) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
(26) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(35) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: Kenn H. <ke...@us...> - 2003-02-17 01:15:08
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char In directory sc8-pr-cvs1:/tmp/cvs-serv6356/drivers/char Modified Files: tty_io.c Log Message: Merge with 2.5.37 Index: tty_io.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/tty_io.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- tty_io.c 16 Feb 2003 01:05:23 -0000 1.6 +++ tty_io.c 17 Feb 2003 01:15:01 -0000 1.7 @@ -432,6 +432,7 @@ struct file * cons_filp = NULL; struct task_struct *p; struct list_head *l; + struct pid *pid; int closecount = 0, n; if (!tty) @@ -496,17 +497,17 @@ } read_lock(&tasklist_lock); - for_each_process(p) { - if ((tty->session > 0) && (p->session == tty->session) && - p->leader) { - send_sig(SIGHUP,p,1); - send_sig(SIGCONT,p,1); + if (tty->session > 0) + for_each_task_pid(tty->session, PIDTYPE_SID, p, l, pid) { + if (p->tty == tty) + p->tty = NULL; + if (!p->leader) + continue; + send_sig(SIGHUP, p, 1); + send_sig(SIGCONT, p, 1); if (tty->pgrp > 0) p->tty_old_pgrp = tty->pgrp; } - if (p->tty == tty) - p->tty = NULL; - } read_unlock(&tasklist_lock); tty->flags = 0; @@ -571,6 +572,8 @@ { struct tty_struct *tty = current->tty; struct task_struct *p; + struct list_head *l; + struct pid *pid; int tty_pgrp = -1; lock_kernel(); @@ -598,9 +601,8 @@ tty->pgrp = -1; read_lock(&tasklist_lock); - for_each_process(p) - if (p->session == current->session) - p->tty = NULL; + for_each_task_pid(current->session, PIDTYPE_SID, p, l, pid) + p->tty = NULL; read_unlock(&tasklist_lock); unlock_kernel(); } @@ -1221,12 +1223,15 @@ */ if (tty_closing || o_tty_closing) { struct task_struct *p; + struct list_head *l; + struct pid *pid; read_lock(&tasklist_lock); - for_each_process(p) { - if (p->tty == tty || (o_tty && p->tty == o_tty)) + for_each_task_pid(tty->session, PIDTYPE_SID, p, l, pid) + p->tty = NULL; + if (o_tty) + for_each_task_pid(o_tty->session, PIDTYPE_SID, p,l, pid) p->tty = NULL; - } read_unlock(&tasklist_lock); if (redirect == tty || (o_tty && redirect == o_tty)) @@ -1540,6 +1545,10 @@ static int tiocsctty(struct tty_struct *tty, int arg) { + struct list_head *l; + struct pid *pid; + task_t *p; + if (current->leader && (current->session == tty->session)) return 0; @@ -1558,12 +1567,10 @@ /* * Steal it away */ - struct task_struct *p; read_lock(&tasklist_lock); - for_each_process(p) - if (p->tty == tty) - p->tty = NULL; + for_each_task_pid(tty->session, PIDTYPE_SID, p, l, pid) + p->tty = NULL; read_unlock(&tasklist_lock); } else return -EPERM; |
From: Kenn H. <ke...@us...> - 2003-02-17 01:15:08
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv6356 Modified Files: Makefile Log Message: Merge with 2.5.37 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.43 retrieving revision 1.44 diff -u -r1.43 -r1.44 --- Makefile 16 Feb 2003 19:07:55 -0000 1.43 +++ Makefile 17 Feb 2003 01:15:00 -0000 1.44 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 36 +SUBLEVEL = 37 EXTRAVERSION = # *DOCUMENTATION* @@ -162,8 +162,6 @@ export srctree objtree -SUBDIRS := init kernel mm fs ipc lib drivers sound net security - # The temporary file to save gcc -MD generated dependencies must not # contain a comma depfile = $(subst $(comma),_,$(@D)/.$(@F).d) @@ -246,15 +244,33 @@ # Link components for vmlinux # --------------------------------------------------------------------------- -INIT := init/init.o -CORE_FILES := kernel/kernel.o mm/mm.o fs/fs.o ipc/ipc.o security/built-in.o -LIBS := lib/lib.a -DRIVERS := drivers/built-in.o sound/sound.o -NETWORKS := net/network.o +init-y := init/ +drivers-y := drivers/ sound/ +networks-y := net/ +libs-y := lib/ + +CORE_FILES := kernel/built-in.o mm/built-in.o fs/built-in.o \ + ipc/built-in.o security/built-in.o +SUBDIRS += kernel mm fs ipc security include arch/$(ARCH)/Makefile -export NETWORKS DRIVERS LIBS HEAD LDFLAGS MAKEBOOT ASFLAGS +SUBDIRS += $(patsubst %/,%,$(filter %/, $(init-y) $(init-m))) +INIT += $(patsubst %/, %/built-in.o, $(init-y)) + +SUBDIRS += $(patsubst %/,%,$(filter %/, $(core-y) $(core-m))) +CORE_FILES := $(patsubst %/, %/built-in.o, $(core-y)) $(CORE_FILES) + +SUBDIRS += $(patsubst %/,%,$(filter %/, $(drivers-y) $(drivers-m))) +DRIVERS += $(patsubst %/, %/built-in.o, $(drivers-y)) + +SUBDIRS += $(patsubst %/,%,$(filter %/, $(networks-y) $(networks-m))) +NETWORKS += $(patsubst %/, %/built-in.o, $(networks-y)) + +SUBDIRS += $(patsubst %/,%,$(filter %/, $(libs-y) $(libs-m))) +LIBS += $(patsubst %/, %/lib.a, $(libs-y)) + +export NETWORKS DRIVERS LIBS HEAD LDFLAGS MAKEBOOT # boot target # --------------------------------------------------------------------------- |
From: Kenn H. <ke...@us...> - 2003-02-17 01:15:08
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/net In directory sc8-pr-cvs1:/tmp/cvs-serv6356/drivers/net Modified Files: Makefile Log Message: Merge with 2.5.37 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/net/Makefile,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- Makefile 25 Jan 2003 00:33:32 -0000 1.14 +++ Makefile 17 Feb 2003 01:15:01 -0000 1.15 @@ -70,7 +70,7 @@ obj-$(CONFIG_AIRONET4500_CS) += aironet4500_proc.o obj-$(CONFIG_WINBOND_840) += mii.o -obj-$(CONFIG_SUNDANCE) += sundance.o +obj-$(CONFIG_SUNDANCE) += sundance.o mii.o obj-$(CONFIG_HAMACHI) += hamachi.o obj-$(CONFIG_NET) += Space.o setup.o net_init.o loopback.o obj-$(CONFIG_SEEQ8005) += seeq8005.o |
From: Kenn H. <ke...@us...> - 2003-02-17 01:15:07
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi In directory sc8-pr-cvs1:/tmp/cvs-serv6356/drivers/scsi Modified Files: Makefile Removed Files: scsi_queue.c Log Message: Merge with 2.5.37 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/scsi/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- Makefile 27 Jan 2003 01:28:21 -0000 1.9 +++ Makefile 17 Feb 2003 01:15:02 -0000 1.10 @@ -126,8 +126,9 @@ obj-$(CONFIG_CHR_DEV_SG) += sg.o scsi_mod-objs := scsi.o hosts.o scsi_ioctl.o constants.o scsicam.o \ - scsi_proc.o scsi_error.o scsi_queue.o scsi_lib.o \ - scsi_merge.o scsi_scan.o scsi_syms.o + scsi_proc.o scsi_error.o scsi_lib.o scsi_merge.o \ + scsi_scan.o scsi_syms.o + sd_mod-objs := sd.o sr_mod-objs := sr.o sr_ioctl.o sr_vendor.o initio-objs := ini9100u.o i91uscsi.o --- scsi_queue.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-17 01:10:02
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/i386/pci In directory sc8-pr-cvs1:/tmp/cvs-serv4483/arch/i386/pci Removed Files: visws.c Log Message: Merge with 2.5.37 --- visws.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-17 01:10:02
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-ppc64 In directory sc8-pr-cvs1:/tmp/cvs-serv4483/include/asm-ppc64 Removed Files: ppc_asm.tmpl Log Message: Merge with 2.5.37 --- ppc_asm.tmpl DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-17 01:10:01
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/i386/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv4483/arch/i386/kernel Removed Files: setup-visws.c visws_apic.c Log Message: Merge with 2.5.37 --- setup-visws.c DELETED --- --- visws_apic.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-17 01:10:01
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/boot/pmac In directory sc8-pr-cvs1:/tmp/cvs-serv4483/arch/ppc/boot/pmac Removed Files: Makefile chrpmain.c coffmain.c misc.S start.c Log Message: Merge with 2.5.37 --- Makefile DELETED --- --- chrpmain.c DELETED --- --- coffmain.c DELETED --- --- misc.S DELETED --- --- start.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-17 01:10:01
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-i386 In directory sc8-pr-cvs1:/tmp/cvs-serv4483/include/asm-i386 Removed Files: irq_vectors.h max_numnodes.h Log Message: Merge with 2.5.37 --- irq_vectors.h DELETED --- --- max_numnodes.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-17 01:10:00
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc64/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv4483/arch/ppc64/kernel Removed Files: local_irq.h mk_defs.c ppc_asm.h ppc_defs.head Log Message: Merge with 2.5.37 --- local_irq.h DELETED --- --- mk_defs.c DELETED --- --- ppc_asm.h DELETED --- --- ppc_defs.head DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-17 01:10:00
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/boot/chrp In directory sc8-pr-cvs1:/tmp/cvs-serv4483/arch/ppc/boot/chrp Removed Files: Makefile main.c misc.S start.c Log Message: Merge with 2.5.37 --- Makefile DELETED --- --- main.c DELETED --- --- misc.S DELETED --- --- start.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-17 01:10:00
|
Update of /cvsroot/linux-vax/kernel-2.5/Documentation In directory sc8-pr-cvs1:/tmp/cvs-serv4483/Documentation Removed Files: driver-model.txt Log Message: Merge with 2.5.37 --- driver-model.txt DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-16 23:58:45
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1:/tmp/cvs-serv13189/include/asm-vax Modified Files: ptrace.h Log Message: 2.5.36 introduces an arch-independent API dump_stack(). We now rename our internal dump_stack() to vax_dump_stack() and delegate to it from our implementation of dump_stack(). Index: ptrace.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/ptrace.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ptrace.h 20 May 2002 00:33:39 -0000 1.3 +++ ptrace.h 16 Feb 2003 23:58:41 -0000 1.4 @@ -67,7 +67,7 @@ extern void show_regs(struct pt_regs *); extern void show_cpu_regs(void); extern void dump_cur_regs(unsigned int frames); -extern void dump_stack(unsigned int frames); +extern void vax_dump_stack(unsigned int frames); #define DUMP_STACK_CURRENT 0 #define DUMP_STACK_CALLER 1 |
From: Kenn H. <ke...@us...> - 2003-02-16 23:58:45
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv13189/arch/vax/kernel Modified Files: interrupt.c regdump.c Log Message: 2.5.36 introduces an arch-independent API dump_stack(). We now rename our internal dump_stack() to vax_dump_stack() and delegate to it from our implementation of dump_stack(). Index: interrupt.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/interrupt.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- interrupt.c 9 Feb 2003 01:49:22 -0000 1.10 +++ interrupt.c 16 Feb 2003 23:58:40 -0000 1.11 @@ -406,7 +406,7 @@ vec_num, vec_num*4); printk("\nStack dump:\n"); - dump_stack(DUMP_STACK_CALLER); + vax_dump_stack(DUMP_STACK_CALLER); dump_cur_regs(DUMP_REGS_CALLER); show_cpu_regs(); Index: regdump.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/regdump.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- regdump.c 20 May 2002 00:33:33 -0000 1.4 +++ regdump.c 16 Feb 2003 23:58:41 -0000 1.5 @@ -137,7 +137,12 @@ return; } -void dump_stack(unsigned int frames) +void dump_stack(void) +{ + vax_dump_stack(0); +} + +void vax_dump_stack(unsigned int frames) { unsigned int reg_count; unsigned int save_mask; |
From: Kenn H. <ke...@us...> - 2003-02-16 23:52:37
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv11403/arch/vax/kernel Modified Files: signal.c Log Message: Fix from Dave in 2.4. Don't halt on (possibly) non-working real time signals Index: signal.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/signal.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- signal.c 12 Jan 2003 22:45:02 -0000 1.7 +++ signal.c 16 Feb 2003 23:52:34 -0000 1.8 @@ -77,9 +77,9 @@ { sigset_t saveset, newset; + printk("sys_rt_sigsuspend called but may not work\n"); + /* XXX: Don't preclude handling different sized sigset_t's. */ - machine_halt(); - if (sigsetsize != sizeof(sigset_t)) return -EINVAL; @@ -244,13 +244,12 @@ sigset_t set; stack_t st; + printk("sys_rt_sigreturn called but may not work\n"); /* * Since we stacked the signal on a dword boundary, * then frame should be dword aligned here. If it's * not, then the user is trying to mess with us. */ - machine_halt(); - if (((long)frame) & 3) goto badframe; |
From: Kenn H. <ke...@us...> - 2003-02-16 23:51:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1:/tmp/cvs-serv11139/include/asm-vax Modified Files: uaccess.h Log Message: Fix from Dave in 2.4. Index: uaccess.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/uaccess.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- uaccess.h 29 Oct 2002 00:52:51 -0000 1.4 +++ uaccess.h 16 Feb 2003 23:51:31 -0000 1.5 @@ -155,11 +155,12 @@ "2:\n" \ ".section .fixup,\"ax\"\n" \ "3: movl %3,%0\n" \ - " jmp 2b\n" \ + " jmp 2b\n" \ + ".previous\n" \ ".section __ex_table,\"a\"\n" \ " .align 2\n" \ " .long 1b,3b\n" \ - ".text" \ + ".previous" \ : "=r"(err) \ : "r"(x), "m"(*addr), "i"(-EFAULT), "0"(err)) |
From: Kenn H. <ke...@us...> - 2003-02-16 23:50:23
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv10870 Modified Files: .cvsignore Log Message: Changes to targets made in the directory Index: .cvsignore =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- .cvsignore 20 May 2002 00:33:33 -0000 1.3 +++ .cvsignore 16 Feb 2003 23:50:20 -0000 1.4 @@ -1,5 +1,2 @@ -*.a.flags -*.o.flags -.depend -*.lst - +.*.cmd +vmlinux.lds.s |
From: Kenn H. <ke...@us...> - 2003-02-16 23:49:11
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv10326 Modified Files: Makefile Added Files: vmlinux.lds.S Removed Files: vmlinux.lds Log Message: 2.5.36 introduces a standard rule for generating vmlinux.lds.s from vmlinux.lds.S and automatically includes this in the vmlinux link command --- NEW FILE --- /* ld script to make bootable VAX image * Written for i386 by Martin Mares <mj...@at...> * Modified by Kenn Humborg <ke...@li...> */ /* As of 2.5.16, the jiffy counter is 64-bit and is called jiffies_64. For backward-compatibility, a symbol 'jiffies' needs to be aliased to the least-significant 32-bits of jiffies_64 */ jiffies = jiffies_64; SECTIONS { /* kernel is based in S0 space at 0x80100000 */ . = 0x80000000 + 0x100000; _text = .; /* Text and read-only data */ __kernel_start = .; .text : { /* boot code comes first. The fact that it is linked at 0x80100000 doesn't matter because it's all hand-crafted position-independent code */ *(.vaxboot) *(.vaxbootlib) /* Kernel C code starts here */ *(.text) *(.fixup) *(.gnu.warning) } = 0x9090 .text.lock : { *(.text.lock) } /* out-of-line lock text */ _etext = .; /* End of text section */ .rodata : { *(.rodata) } .kstrtab : { *(.kstrtab) } . = ALIGN(16); /* Exception table */ __start___ex_table = .; __ex_table : { *(__ex_table) } __stop___ex_table = .; __start___ksymtab = .; /* Kernel symbol table */ __ksymtab : { *(__ksymtab) } __stop___ksymtab = .; .data : { /* Data */ *(.data) CONSTRUCTORS } _edata = .; /* End of data section */ . = ALIGN(8192); /* init_task */ .data.init_task : { *(.data.init_task) } . = ALIGN(4096); /* Init code and data */ __init_begin = .; .text.init : { *(.text.init) } .data.init : { *(.data.init) } . = ALIGN(16); __setup_start = .; .setup.init : { *(.setup.init) } __setup_end = .; __initcall_start = .; .initcall.init : { *(.initcall1.init) *(.initcall2.init) *(.initcall3.init) *(.initcall4.init) *(.initcall5.init) *(.initcall6.init) *(.initcall7.init) } __initcall_end = .; . = ALIGN(4096); __init_end = .; . = ALIGN(4096); __init_end = .; /* This is end of loadable image */ __bss_start = .; /* BSS */ .bss : { *(.bss) } _end = .; /* Boot code uses this to determine how much code and data to relocate */ /* Sections to be discarded */ /DISCARD/ : { *(.text.exit) *(.data.exit) *(.exitcall.exit) } /* Stabs debugging sections. */ .stab 0 : { *(.stab) } .stabstr 0 : { *(.stabstr) } .stab.excl 0 : { *(.stab.excl) } .stab.exclstr 0 : { *(.stab.exclstr) } .stab.index 0 : { *(.stab.index) } .stab.indexstr 0 : { *(.stab.indexstr) } .comment 0 : { *(.comment) } } Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/Makefile,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- Makefile 9 Feb 2003 01:30:34 -0000 1.14 +++ Makefile 16 Feb 2003 23:49:08 -0000 1.15 @@ -24,8 +24,7 @@ # These flags are used by the top-level makefile when linking # the kernel -LDFLAGS_vmlinux=-T arch/vax/vmlinux.lds \ - -N -nostartfiles -nostdlib \ +LDFLAGS_vmlinux=-N -nostartfiles -nostdlib \ -noinhibit-exec -warn-once \ -Map vmlinux.map -cref --- vmlinux.lds DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-16 23:48:02
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv10131 Modified Files: defconfig 460.config Log Message: Update default config. XFS is now in kernel, but we don't need it. Index: defconfig =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/defconfig,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- defconfig 14 Feb 2003 02:22:03 -0000 1.8 +++ defconfig 16 Feb 2003 23:47:57 -0000 1.9 @@ -195,6 +195,9 @@ # CONFIG_UDF_RW is not set # CONFIG_UFS_FS is not set # CONFIG_UFS_FS_WRITE is not set +# CONFIG_XFS_FS is not set +# CONFIG_XFS_RT is not set +# CONFIG_XFS_QUOTA is not set # # Network File Systems Index: 460.config =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/460.config,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- 460.config 14 Feb 2003 02:22:03 -0000 1.11 +++ 460.config 16 Feb 2003 23:47:57 -0000 1.12 @@ -195,6 +195,9 @@ # CONFIG_UDF_RW is not set # CONFIG_UFS_FS is not set # CONFIG_UFS_FS_WRITE is not set +# CONFIG_XFS_FS is not set +# CONFIG_XFS_RT is not set +# CONFIG_XFS_QUOTA is not set # # Network File Systems |
From: Kenn H. <ke...@us...> - 2003-02-16 19:08:32
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char In directory sc8-pr-cvs1:/tmp/cvs-serv28234/drivers/char Modified Files: Makefile Removed Files: console.c Log Message: Merge with 2.5.36 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/Makefile,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- Makefile 16 Feb 2003 01:05:23 -0000 1.23 +++ Makefile 16 Feb 2003 19:07:59 -0000 1.24 @@ -12,12 +12,12 @@ # All of the (potential) objects that export symbols. # This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'. -export-objs := busmouse.o console.o generic_serial.o ip2main.o \ +export-objs := busmouse.o vt.o generic_serial.o ip2main.o \ ite_gpio.o keyboard.o misc.o nvram.o random.o rtc.o \ selection.o sonypi.o sysrq.o tty_io.o tty_ioctl.o -obj-$(CONFIG_VT) += vt.o vc_screen.o consolemap.o consolemap_deftbl.o selection.o keyboard.o -obj-$(CONFIG_HW_CONSOLE) += console.o defkeymap.o +obj-$(CONFIG_VT) += vt_ioctl.o vc_screen.o consolemap.o consolemap_deftbl.o selection.o keyboard.o +obj-$(CONFIG_HW_CONSOLE) += vt.o defkeymap.o obj-$(CONFIG_MAGIC_SYSRQ) += sysrq.o obj-$(CONFIG_ATARI_DSP56K) += dsp56k.o obj-$(CONFIG_ROCKETPORT) += rocket.o --- console.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-16 19:08:29
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv28234 Modified Files: Makefile Log Message: Merge with 2.5.36 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- Makefile 16 Feb 2003 01:05:23 -0000 1.42 +++ Makefile 16 Feb 2003 19:07:55 -0000 1.43 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 35 +SUBLEVEL = 36 EXTRAVERSION = # *DOCUMENTATION* @@ -297,7 +297,9 @@ $(NM) vmlinux | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | sort > System.map endef -vmlinux: $(vmlinux-objs) FORCE +LDFLAGS_vmlinux += -T arch/$(ARCH)/vmlinux.lds.s + +vmlinux: $(vmlinux-objs) arch/$(ARCH)/vmlinux.lds.s FORCE $(call if_changed_rule,link_vmlinux) # The actual objects are generated when descending, @@ -323,7 +325,7 @@ AFLAGS_vmlinux.lds.o += -P -C -U$(ARCH) -arch/$(ARCH)/vmlinux.lds.s: arch/$(ARCH)/vmlinux.lds.S FORCE +arch/$(ARCH)/vmlinux.lds.s: arch/$(ARCH)/vmlinux.lds.S scripts FORCE $(call if_changed_dep,as_s_S) targets += arch/$(ARCH)/vmlinux.lds.s @@ -788,6 +790,7 @@ # FIXME Should go into a make.lib or something # =========================================================================== +echo_target = $(RELDIR)/$@ a_flags = -Wp,-MD,$(depfile) $(AFLAGS) $(NOSTDINC_FLAGS) \ $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(*F).o) |
From: Kenn H. <ke...@us...> - 2003-02-16 19:08:23
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/ide/pci In directory sc8-pr-cvs1:/tmp/cvs-serv28234/drivers/ide/pci Removed Files: pdc202xx.c pdc202xx.h Log Message: Merge with 2.5.36 --- pdc202xx.c DELETED --- --- pdc202xx.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-16 19:08:05
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/sparc In directory sc8-pr-cvs1:/tmp/cvs-serv28234/arch/sparc Removed Files: vmlinux.lds Log Message: Merge with 2.5.36 --- vmlinux.lds DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-16 19:08:05
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/sparc64 In directory sc8-pr-cvs1:/tmp/cvs-serv28234/arch/sparc64 Removed Files: vmlinux.lds Log Message: Merge with 2.5.36 --- vmlinux.lds DELETED --- |
From: Kenn H. <ke...@us...> - 2003-02-16 19:08:04
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc In directory sc8-pr-cvs1:/tmp/cvs-serv28234/arch/ppc Removed Files: vmlinux.lds Log Message: Merge with 2.5.36 --- vmlinux.lds DELETED --- |