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-10 02:23:48
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/sbus/char In directory sc8-pr-cvs1:/tmp/cvs-serv16976/drivers/sbus/char Removed Files: pcikbd.c pcikbd.h sab82532.c su.c sunkbd.c sunkbd.h sunkbdmap.c sunkeymap.c sunkeymap.map sunmouse.c sunmouse.h sunserial.c sunserial.h zs.c zs.h Log Message: Merge with 2.5.31 --- pcikbd.c DELETED --- --- pcikbd.h DELETED --- --- sab82532.c DELETED --- --- su.c DELETED --- --- sunkbd.c DELETED --- --- sunkbd.h DELETED --- --- sunkbdmap.c DELETED --- --- sunkeymap.c DELETED --- --- sunkeymap.map DELETED --- --- sunmouse.c DELETED --- --- sunmouse.h DELETED --- --- sunserial.c DELETED --- --- sunserial.h DELETED --- --- zs.c DELETED --- --- zs.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:23:48
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/usb/core In directory sc8-pr-cvs1:/tmp/cvs-serv16976/drivers/usb/core Removed Files: drivers.c Log Message: Merge with 2.5.31 --- drivers.c DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:23:46
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/net
In directory sc8-pr-cvs1:/tmp/cvs-serv16976/drivers/net
Modified Files:
Space.c
Log Message:
Merge with 2.5.31
Index: Space.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/net/Space.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Space.c 9 Feb 2003 01:37:11 -0000 1.5
+++ Space.c 10 Feb 2003 02:23:43 -0000 1.6
@@ -480,10 +480,10 @@
#ifdef CONFIG_ETHERTAP
static struct net_device tap0_dev = {
- name: "tap0",
- base_addr: NETLINK_TAPBASE,
- next: NEXT_DEV,
- init: ethertap_probe,
+ .name = "tap0",
+ .base_addr = NETLINK_TAPBASE,
+ .next = NEXT_DEV,
+ .init = ethertap_probe,
};
#undef NEXT_DEV
#define NEXT_DEV (&tap0_dev)
@@ -492,9 +492,9 @@
#ifdef CONFIG_SDLA
extern int sdla_init(struct net_device *);
static struct net_device sdla0_dev = {
- name: "sdla0",
- next: NEXT_DEV,
- init: sdla_init,
+ .name = "sdla0",
+ .next = NEXT_DEV,
+ .init = sdla_init,
};
#undef NEXT_DEV
#define NEXT_DEV (&sdla0_dev)
@@ -503,9 +503,9 @@
#if defined(CONFIG_LTPC)
extern int ltpc_probe(struct net_device *);
static struct net_device dev_ltpc = {
- name: "lt0",
- next: NEXT_DEV,
- init: ltpc_probe
+ .name = "lt0",
+ .next = NEXT_DEV,
+ .init = ltpc_probe
};
#undef NEXT_DEV
#define NEXT_DEV (&dev_ltpc)
@@ -514,63 +514,63 @@
#if defined(CONFIG_COPS)
extern int cops_probe(struct net_device *);
static struct net_device cops2_dev = {
- name: "lt2",
- next: NEXT_DEV,
- init: cops_probe,
+ .name = "lt2",
+ .next = NEXT_DEV,
+ .init = cops_probe,
};
static struct net_device cops1_dev = {
- name: "lt1",
- next: &cops2_dev,
- init: cops_probe,
+ .name = "lt1",
+ .next = &cops2_dev,
+ .init = cops_probe,
};
static struct net_device cops0_dev = {
- name: "lt0",
- next: &cops1_dev,
- init: cops_probe,
+ .name = "lt0",
+ .next = &cops1_dev,
+ .init = cops_probe,
};
#undef NEXT_DEV
#define NEXT_DEV (&cops0_dev)
#endif /* COPS */
static struct net_device eth7_dev = {
- name: "eth%d",
- next: NEXT_DEV,
- init: ethif_probe,
+ .name = "eth%d",
+ .next = NEXT_DEV,
+ .init = ethif_probe,
};
static struct net_device eth6_dev = {
- name: "eth%d",
- next: ð7_dev,
- init: ethif_probe,
+ .name = "eth%d",
+ .next = ð7_dev,
+ .init = ethif_probe,
};
static struct net_device eth5_dev = {
- name: "eth%d",
- next: ð6_dev,
- init: ethif_probe,
+ .name = "eth%d",
+ .next = ð6_dev,
+ .init = ethif_probe,
};
static struct net_device eth4_dev = {
- name: "eth%d",
- next: ð5_dev,
- init: ethif_probe,
+ .name = "eth%d",
+ .next = ð5_dev,
+ .init = ethif_probe,
};
static struct net_device eth3_dev = {
- name: "eth%d",
- next: ð4_dev,
- init: ethif_probe,
+ .name = "eth%d",
+ .next = ð4_dev,
+ .init = ethif_probe,
};
static struct net_device eth2_dev = {
- name: "eth%d",
- next: ð3_dev,
- init: ethif_probe,
+ .name = "eth%d",
+ .next = ð3_dev,
+ .init = ethif_probe,
};
static struct net_device eth1_dev = {
- name: "eth%d",
- next: ð2_dev,
- init: ethif_probe,
+ .name = "eth%d",
+ .next = ð2_dev,
+ .init = ethif_probe,
};
static struct net_device eth0_dev = {
- name: "eth%d",
- next: ð1_dev,
- init: ethif_probe,
+ .name = "eth%d",
+ .next = ð1_dev,
+ .init = ethif_probe,
};
#undef NEXT_DEV
@@ -599,44 +599,44 @@
return 0;
}
static struct net_device tr7_dev = {
- name: "tr%d",
- next: NEXT_DEV,
- init: trif_probe,
+ .name = "tr%d",
+ .next = NEXT_DEV,
+ .init = trif_probe,
};
static struct net_device tr6_dev = {
- name: "tr%d",
- next: &tr7_dev,
- init: trif_probe,
+ .name = "tr%d",
+ .next = &tr7_dev,
+ .init = trif_probe,
};
static struct net_device tr5_dev = {
- name: "tr%d",
- next: &tr6_dev,
- init: trif_probe,
+ .name = "tr%d",
+ .next = &tr6_dev,
+ .init = trif_probe,
};
static struct net_device tr4_dev = {
- name: "tr%d",
- next: &tr5_dev,
- init: trif_probe,
+ .name = "tr%d",
+ .next = &tr5_dev,
+ .init = trif_probe,
};
static struct net_device tr3_dev = {
- name: "tr%d",
- next: &tr4_dev,
- init: trif_probe,
+ .name = "tr%d",
+ .next = &tr4_dev,
+ .init = trif_probe,
};
static struct net_device tr2_dev = {
- name: "tr%d",
- next: &tr3_dev,
- init: trif_probe,
+ .name = "tr%d",
+ .next = &tr3_dev,
+ .init = trif_probe,
};
static struct net_device tr1_dev = {
- name: "tr%d",
- next: &tr2_dev,
- init: trif_probe,
+ .name = "tr%d",
+ .next = &tr2_dev,
+ .init = trif_probe,
};
static struct net_device tr0_dev = {
- name: "tr%d",
- next: &tr1_dev,
- init: trif_probe,
+ .name = "tr%d",
+ .next = &tr1_dev,
+ .init = trif_probe,
};
#undef NEXT_DEV
#define NEXT_DEV (&tr0_dev)
@@ -645,44 +645,44 @@
#ifdef CONFIG_FDDI
static struct net_device fddi7_dev = {
- name: "fddi7",
- next: NEXT_DEV,
- init: fddiif_probe
+ .name = "fddi7",
+ .next = NEXT_DEV,
+ .init = fddiif_probe
};
static struct net_device fddi6_dev = {
- name: "fddi6",
- next: &fddi7_dev,
- init: fddiif_probe
+ .name = "fddi6",
+ .next = &fddi7_dev,
+ .init = fddiif_probe
};
static struct net_device fddi5_dev = {
- name: "fddi5",
- next: &fddi6_dev,
- init: fddiif_probe
+ .name = "fddi5",
+ .next = &fddi6_dev,
+ .init = fddiif_probe
};
static struct net_device fddi4_dev = {
- name: "fddi4",
- next: &fddi5_dev,
- init: fddiif_probe
+ .name = "fddi4",
+ .next = &fddi5_dev,
+ .init = fddiif_probe
};
static struct net_device fddi3_dev = {
- name: "fddi3",
- next: &fddi4_dev,
- init: fddiif_probe
+ .name = "fddi3",
+ .next = &fddi4_dev,
+ .init = fddiif_probe
};
static struct net_device fddi2_dev = {
- name: "fddi2",
- next: &fddi3_dev,
- init: fddiif_probe
+ .name = "fddi2",
+ .next = &fddi3_dev,
+ .init = fddiif_probe
};
static struct net_device fddi1_dev = {
- name: "fddi1",
- next: &fddi2_dev,
- init: fddiif_probe
+ .name = "fddi1",
+ .next = &fddi2_dev,
+ .init = fddiif_probe
};
static struct net_device fddi0_dev = {
- name: "fddi0",
- next: &fddi1_dev,
- init: fddiif_probe
+ .name = "fddi0",
+ .next = &fddi1_dev,
+ .init = fddiif_probe
};
#undef NEXT_DEV
#define NEXT_DEV (&fddi0_dev)
@@ -691,14 +691,14 @@
#ifdef CONFIG_NET_FC
static struct net_device fc1_dev = {
- name: "fc1",
- next: NEXT_DEV,
- init: fcif_probe
+ .name = "fc1",
+ .next = NEXT_DEV,
+ .init = fcif_probe
};
static struct net_device fc0_dev = {
- name: "fc0",
- next: &fc1_dev,
- init: fcif_probe
+ .name = "fc0",
+ .next = &fc1_dev,
+ .init = fcif_probe
};
#undef NEXT_DEV
#define NEXT_DEV (&fc0_dev)
@@ -707,44 +707,44 @@
#ifdef CONFIG_SBNI
static struct net_device sbni7_dev = {
- name: "sbni7",
- next: NEXT_DEV,
- init: sbni_probe,
+ .name = "sbni7",
+ .next = NEXT_DEV,
+ .init = sbni_probe,
};
static struct net_device sbni6_dev = {
- name: "sbni6",
- next: &sbni7_dev,
- init: sbni_probe,
+ .name = "sbni6",
+ .next = &sbni7_dev,
+ .init = sbni_probe,
};
static struct net_device sbni5_dev = {
- name: "sbni5",
- next: &sbni6_dev,
- init: sbni_probe,
+ .name = "sbni5",
+ .next = &sbni6_dev,
+ .init = sbni_probe,
};
static struct net_device sbni4_dev = {
- name: "sbni4",
- next: &sbni5_dev,
- init: sbni_probe,
+ .name = "sbni4",
+ .next = &sbni5_dev,
+ .init = sbni_probe,
};
static struct net_device sbni3_dev = {
- name: "sbni3",
- next: &sbni4_dev,
- init: sbni_probe,
+ .name = "sbni3",
+ .next = &sbni4_dev,
+ .init = sbni_probe,
};
static struct net_device sbni2_dev = {
- name: "sbni2",
- next: &sbni3_dev,
- init: sbni_probe,
+ .name = "sbni2",
+ .next = &sbni3_dev,
+ .init = sbni_probe,
};
static struct net_device sbni1_dev = {
- name: "sbni1",
- next: &sbni2_dev,
- init: sbni_probe,
+ .name = "sbni1",
+ .next = &sbni2_dev,
+ .init = sbni_probe,
};
static struct net_device sbni0_dev = {
- name: "sbni0",
- next: &sbni1_dev,
- init: sbni_probe,
+ .name = "sbni0",
+ .next = &sbni1_dev,
+ .init = sbni_probe,
};
#undef NEXT_DEV
@@ -758,9 +758,9 @@
extern int loopback_init(struct net_device *dev);
struct net_device loopback_dev = {
- name: "lo",
- next: NEXT_DEV,
- init: loopback_init
+ .name = "lo",
+ .next = NEXT_DEV,
+ .init = loopback_init
};
/*
|
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:23:46
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/base In directory sc8-pr-cvs1:/tmp/cvs-serv16976/drivers/base Removed Files: fs.c Log Message: Merge with 2.5.31 --- fs.c DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:05:47
|
Update of /cvsroot/linux-vax/kernel-2.5/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv11862/kernel
Modified Files:
panic.c
Log Message:
Merge with 2.5.31
Index: panic.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/kernel/panic.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- panic.c 9 Feb 2003 01:37:11 -0000 1.5
+++ panic.c 10 Feb 2003 02:05:12 -0000 1.6
@@ -88,7 +88,7 @@
extern int stop_a_enabled;
/* Make sure the user can actually press L1-A */
stop_a_enabled = 1;
- printk("Press L1-A to return to the boot prom\n");
+ printk(KERN_EMERG "Press L1-A to return to the boot prom\n");
}
#endif
#if defined(CONFIG_ARCH_S390)
|
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:05:40
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv11862 Modified Files: Makefile Log Message: Merge with 2.5.31 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.36 retrieving revision 1.37 diff -u -r1.36 -r1.37 --- Makefile 9 Feb 2003 21:34:05 -0000 1.36 +++ Makefile 10 Feb 2003 02:05:06 -0000 1.37 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 30 +SUBLEVEL = 31 EXTRAVERSION = # *DOCUMENTATION* @@ -27,7 +27,15 @@ KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) -ARCH=vax +# SUBARCH tells the usermode build what the underlying arch is. That is set +# first, and if a usermode build is happening, the "ARCH=um" on the command +# line overrides the setting of ARCH below. If a native build is happening, +# then ARCH is assigned, getting whatever value it gets normally, and +# SUBARCH is subsequently ignored. + +SUBARCH := vax +ARCH := $(SUBARCH) + KERNELPATH=kernel-$(shell echo $(KERNELRELEASE) | sed -e "s/-//g") CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ |
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:05:23
|
Update of /cvsroot/linux-vax/kernel-2.5/net/ipx In directory sc8-pr-cvs1:/tmp/cvs-serv11862/net/ipx Removed Files: af_spx.c Log Message: Merge with 2.5.31 --- af_spx.c DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:05:22
|
Update of /cvsroot/linux-vax/kernel-2.5/net/802/transit In directory sc8-pr-cvs1:/tmp/cvs-serv11862/net/802/transit Removed Files: compile.awk pdutr.pre timertr.pre Log Message: Merge with 2.5.31 --- compile.awk DELETED --- --- pdutr.pre DELETED --- --- timertr.pre DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:05:21
|
Update of /cvsroot/linux-vax/kernel-2.5/net/802/pseudo In directory sc8-pr-cvs1:/tmp/cvs-serv11862/net/802/pseudo Removed Files: actionnm.awk compile.awk opcd2num.sed opcodes opcodesnm.h pseudocode Log Message: Merge with 2.5.31 --- actionnm.awk DELETED --- --- compile.awk DELETED --- --- opcd2num.sed DELETED --- --- opcodes DELETED --- --- opcodesnm.h DELETED --- --- pseudocode DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:05:19
|
Update of /cvsroot/linux-vax/kernel-2.5/net/802 In directory sc8-pr-cvs1:/tmp/cvs-serv11862/net/802 Removed Files: TODO cl2llc.pre llc_macinit.c llc_sendpdu.c llc_utility.c Log Message: Merge with 2.5.31 --- TODO DELETED --- --- cl2llc.pre DELETED --- --- llc_macinit.c DELETED --- --- llc_sendpdu.c DELETED --- --- llc_utility.c DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:05:15
|
Update of /cvsroot/linux-vax/kernel-2.5/include/net In directory sc8-pr-cvs1:/tmp/cvs-serv11862/include/net Removed Files: llc.h spx.h Log Message: Merge with 2.5.31 --- llc.h DELETED --- --- spx.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:05:13
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-sparc64 In directory sc8-pr-cvs1:/tmp/cvs-serv11862/include/asm-sparc64 Removed Files: sab82532.h Log Message: Merge with 2.5.31 --- sab82532.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-10 02:05:11
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/alpha/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv11862/arch/alpha/kernel Removed Files: irq_smp.c Log Message: Merge with 2.5.31 --- irq_smp.c DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-10 01:02:35
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1:/tmp/cvs-serv26178/include/asm Modified Files: unistd.h Log Message: sys_pread/pwrite become sys_pread64/sys_pwrite64 in 2.5.30 Index: unistd.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/unistd.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- unistd.h 12 Dec 2002 01:12:41 -0000 1.4 +++ unistd.h 10 Feb 2003 01:02:22 -0000 1.5 @@ -193,8 +193,8 @@ #define __NR_rt_sigtimedwait 177 #define __NR_rt_sigqueueinfo 178 #define __NR_rt_sigsuspend 179 -#define __NR_pread 180 -#define __NR_pwrite 181 +#define __NR_pread64 180 +#define __NR_pwrite64 181 #define __NR_chown 182 #define __NR_getcwd 183 #define __NR_capget 184 |
|
From: Kenn H. <ke...@us...> - 2003-02-10 00:56:57
|
Update of /cvsroot/linux-vax/kernel-2.5/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv24788/scripts Modified Files: .cvsignore Log Message: We've now got scripts/docproc and scripts/mkdep doesn't exist any more Index: .cvsignore =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/scripts/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- .cvsignore 9 Feb 2003 01:53:54 -0000 1.4 +++ .cvsignore 10 Feb 2003 00:56:54 -0000 1.5 @@ -2,6 +2,6 @@ *.o.flags .depend *.lst -mkdep split-include fixdep +docproc |
|
From: Kenn H. <ke...@us...> - 2003-02-10 00:54:53
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv24198/arch/vax/kernel Modified Files: entry.S Log Message: sys_pread/sys_pwrite become sys_pread64/sys_pwrite64 in 2.5.30 Index: entry.S =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/entry.S,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- entry.S 31 Jan 2003 08:55:19 -0000 1.6 +++ entry.S 10 Feb 2003 00:54:49 -0000 1.7 @@ -432,8 +432,8 @@ .long sys_rt_sigtimedwait .long sys_rt_sigqueueinfo .long sys_rt_sigsuspend - .long sys_pread /* 180 */ - .long sys_pwrite + .long sys_pread64 /* 180 */ + .long sys_pwrite64 .long sys_chown16 .long sys_getcwd .long sys_capget |
|
From: Kenn H. <ke...@us...> - 2003-02-09 21:34:10
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char
In directory sc8-pr-cvs1:/tmp/cvs-serv16196/drivers/char
Modified Files:
Makefile tty_io.c
Log Message:
Merge with 2.5.30
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/Makefile,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- Makefile 9 Feb 2003 01:37:10 -0000 1.17
+++ Makefile 9 Feb 2003 21:34:06 -0000 1.18
@@ -7,7 +7,7 @@
#
FONTMAPFILE = cp437.uni
-obj-y += mem.o tty_io.o n_tty.o tty_ioctl.o raw.o pty.o misc.o random.o
+obj-y += mem.o tty_io.o n_tty.o tty_ioctl.o pty.o misc.o random.o
# All of the (potential) objects that export symbols.
# This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.
@@ -146,6 +146,8 @@
obj-$(CONFIG_BVME6000_SCC) += generic_serial.o vme_scc.o
obj-$(CONFIG_SERIAL_TX3912) += generic_serial.o serial_tx3912.o
obj-$(CONFIG_HVC_CONSOLE) += hvc_console.o
+obj-$(CONFIG_RAW_DRIVER) += raw.o
+
obj-$(CONFIG_SERIAL_IPR) += generic_serial.o
obj-$(CONFIG_PRINTER) += lp.o
Index: tty_io.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/tty_io.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- tty_io.c 9 Feb 2003 02:57:39 -0000 1.3
+++ tty_io.c 9 Feb 2003 21:34:06 -0000 1.4
@@ -2047,14 +2047,12 @@
void tty_unregister_devfs (struct tty_driver *driver, unsigned minor)
{
#ifdef CONFIG_DEVFS_FS
- void * handle;
int idx = minor - driver->minor_start;
char buf[32];
sprintf(buf, driver->name, idx + driver->name_base);
- handle = devfs_find_handle (NULL, buf, driver->major, minor,
- DEVFS_SPECIAL_CHR, 0);
- devfs_unregister (handle);
+ devfs_find_and_unregister(NULL, buf, driver->major, minor,
+ DEVFS_SPECIAL_CHR, 0);
#endif /* CONFIG_DEVFS_FS */
}
@@ -2072,7 +2070,7 @@
if (driver->flags & TTY_DRIVER_INSTALLED)
return 0;
- error = devfs_register_chrdev(driver->major, driver->name, &tty_fops);
+ error = register_chrdev(driver->major, driver->name, &tty_fops);
if (error < 0)
return error;
else if(driver->major == 0)
@@ -2119,11 +2117,11 @@
return -ENOENT;
if (othername == NULL) {
- retval = devfs_unregister_chrdev(driver->major, driver->name);
+ retval = unregister_chrdev(driver->major, driver->name);
if (retval)
return retval;
} else
- devfs_register_chrdev(driver->major, othername, &tty_fops);
+ register_chrdev(driver->major, othername, &tty_fops);
if (driver->prev)
driver->prev->next = driver->next;
|
|
From: Kenn H. <ke...@us...> - 2003-02-09 21:34:10
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv16196 Modified Files: Makefile Rules.make Log Message: Merge with 2.5.30 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- Makefile 9 Feb 2003 02:57:38 -0000 1.35 +++ Makefile 9 Feb 2003 21:34:05 -0000 1.36 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 29 +SUBLEVEL = 30 EXTRAVERSION = # *DOCUMENTATION* @@ -279,7 +279,6 @@ mv -f .tmpversion .version +$(MAKE) -C init $(call cmd,link_vmlinux) - $(cmd_link_vmlinux) echo 'cmd_$@ := $(cmd_link_vmlinux)' > $(@D)/.$(@F).cmd $(NM) vmlinux | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | sort > System.map endef Index: Rules.make =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Rules.make,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- Rules.make 29 Jan 2003 00:08:12 -0000 1.17 +++ Rules.make 9 Feb 2003 21:34:06 -0000 1.18 @@ -556,3 +556,22 @@ # If quiet is set, only print short version of command cmd = @$(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))' &&) $(cmd_$(1)) + +# do_cmd is a shorthand used to support both compressed, verbose +# and silent output in a single line. +# Compared to cmd described avobe, do_cmd does no rely on any variables +# previously assigned a value. +# +# Usage $(call do_cmd,CMD $@,cmd_to_execute bla bla) +# Example: +# $(call do_cmd,CP $@,cp -b $< $@) +# make -s => nothing will be printed +# make KBUILD_VERBOSE=1 => cp -b path/to/src.file path/to/dest.file +# make KBUILD_VERBOSE=0 => CP path/to/dest.file +define do_cmd + @$(if $(filter quiet_,$(quiet)), echo ' $(1)' &&, + $(if $(filter silent_,$(quiet)),, + echo "$(2)" &&)) \ + $(2) +endef + |
|
From: Kenn H. <ke...@us...> - 2003-02-09 21:34:10
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers In directory sc8-pr-cvs1:/tmp/cvs-serv16196/drivers Modified Files: Makefile Log Message: Merge with 2.5.30 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/Makefile,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- Makefile 9 Feb 2003 01:37:10 -0000 1.12 +++ Makefile 9 Feb 2003 21:34:06 -0000 1.13 @@ -7,8 +7,9 @@ obj-$(CONFIG_PCI) += pci/ obj-$(CONFIG_ACPI) += acpi/ +obj-y += serial/ obj-$(CONFIG_PARPORT) += parport/ -obj-y += base/ serial/ char/ block/ misc/ net/ media/ +obj-y += base/ char/ block/ misc/ net/ media/ obj-$(CONFIG_NUBUS) += nubus/ obj-$(CONFIG_ATM) += atm/ obj-$(CONFIG_IDE) += ide/ |
Update of /cvsroot/linux-vax/kernel-2.5/net/khttpd In directory sc8-pr-cvs1:/tmp/cvs-serv14962/net/khttpd Removed Files: Config.help Config.in Makefile README accept.c datasending.c logging.c main.c make_times_h.c misc.c prototypes.h rfc.c rfc_time.c security.c security.h sockets.c structure.h sysctl.c sysctl.h userspace.c waitheaders.c Log Message: Merge with 2.5.30 --- Config.help DELETED --- --- Config.in DELETED --- --- Makefile DELETED --- --- README DELETED --- --- accept.c DELETED --- --- datasending.c DELETED --- --- logging.c DELETED --- --- main.c DELETED --- --- make_times_h.c DELETED --- --- misc.c DELETED --- --- prototypes.h DELETED --- --- rfc.c DELETED --- --- rfc_time.c DELETED --- --- security.c DELETED --- --- security.h DELETED --- --- sockets.c DELETED --- --- structure.h DELETED --- --- sysctl.c DELETED --- --- sysctl.h DELETED --- --- userspace.c DELETED --- --- waitheaders.c DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-09 21:31:06
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/platforms In directory sc8-pr-cvs1:/tmp/cvs-serv14962/arch/ppc/platforms Removed Files: prep_nvram.c Log Message: Merge with 2.5.30 --- prep_nvram.c DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-09 21:31:06
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-arm/proc-armv In directory sc8-pr-cvs1:/tmp/cvs-serv14962/include/asm-arm/proc-armv Removed Files: rmap.h Log Message: Merge with 2.5.30 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-09 21:31:06
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1:/tmp/cvs-serv14962/include/linux Removed Files: swapctl.h Log Message: Merge with 2.5.30 --- swapctl.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2003-02-09 03:34:11
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax
In directory sc8-pr-cvs1:/tmp/cvs-serv6866/include/asm-vax
Modified Files:
semaphore.h
Log Message:
Add a temporary declaration to prevent a bunch of verbose compile
warnings. This will be removed once I get to 2.5.30.
Index: semaphore.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/semaphore.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- semaphore.h 20 May 2002 00:33:39 -0000 1.4
+++ semaphore.h 9 Feb 2003 03:34:07 -0000 1.5
@@ -22,6 +22,11 @@
#include <asm/system.h>
#include <asm/atomic.h>
#include <linux/wait.h>
+
+/* Temporarly until 2.5.30 includes a proper declaration in the right place */
+struct rw_semaphore;
+void __downgrade_write(struct rw_semaphore *sem);
+
#include <linux/rwsem.h>
struct semaphore {
|
|
From: Kenn H. <ke...@us...> - 2003-02-09 02:58:13
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char
In directory sc8-pr-cvs1:/tmp/cvs-serv23374/drivers/char
Modified Files:
tty_io.c
Removed Files:
serial_21285.c serial_amba.c
Log Message:
Merge with 2.5.29
Index: tty_io.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/tty_io.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tty_io.c 9 Feb 2003 01:41:15 -0000 1.2
+++ tty_io.c 9 Feb 2003 02:57:39 -0000 1.3
@@ -545,6 +545,7 @@
#endif
do_tty_hangup((void *) tty);
}
+EXPORT_SYMBOL(tty_vhangup);
int tty_hung_up_p(struct file * filp)
{
@@ -1458,6 +1459,10 @@
if (!waitqueue_active(&tty->read_wait))
tty->minimum_to_wake = 1;
if (filp->f_owner.pid == 0) {
+ retval = security_ops->file_set_fowner(filp);
+ if (retval)
+ return retval;
+
filp->f_owner.pid = (-tty->pgrp) ? : current->pid;
filp->f_owner.uid = current->uid;
filp->f_owner.euid = current->euid;
--- serial_21285.c DELETED ---
--- serial_amba.c DELETED ---
|