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-01-23 22:59:18
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char In directory sc8-pr-cvs1:/tmp/cvs-serv15350/drivers/char Modified Files: Makefile Log Message: Merge with 2.5.21 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/Makefile,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- Makefile 14 Jan 2003 23:55:17 -0000 1.11 +++ Makefile 23 Jan 2003 22:59:14 -0000 1.12 @@ -215,17 +215,12 @@ obj-$(CONFIG_DRM) += drm/ obj-$(CONFIG_PCMCIA) += pcmcia/ -include $(TOPDIR)/Rules.make - -fastdep: +host-progs := conmakehash -conmakehash: conmakehash.c - $(HOSTCC) $(HOSTCFLAGS) -o conmakehash conmakehash.c +include $(TOPDIR)/Rules.make consolemap_deftbl.c: $(FONTMAPFILE) conmakehash - ./conmakehash $(FONTMAPFILE) > consolemap_deftbl.c - -consolemap_deftbl.o: consolemap_deftbl.c $(TOPDIR)/include/linux/types.h + ./conmakehash $< > $@ .DELETE_ON_ERROR: |
From: Kenn H. <ke...@us...> - 2003-01-23 22:56:24
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1:/tmp/cvs-serv13754/include/linux Modified Files: namespace.h Log Message: Add a couple of #includes that will be added anyway in 2.5.22, but are needed for us to compile. After 2.5.22 is merged, I'll revert to the vendor branch Index: namespace.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/linux/namespace.h,v retrieving revision 1.1.1.2 retrieving revision 1.2 diff -u -r1.1.1.2 -r1.2 --- namespace.h 29 Sep 2002 20:25:23 -0000 1.1.1.2 +++ namespace.h 23 Jan 2003 22:56:21 -0000 1.2 @@ -2,6 +2,9 @@ #define _NAMESPACE_H_ #ifdef __KERNEL__ +#include <linux/dcache.h> +#include <linux/sched.h> + struct namespace { atomic_t count; struct vfsmount * root; |
From: Kenn H. <ke...@us...> - 2003-01-23 22:54:52
|
Update of /cvsroot/linux-vax/kernel-2.5/init In directory sc8-pr-cvs1:/tmp/cvs-serv12495/init Modified Files: main.c Log Message: We're not calling vax_dev_init() directly any more. (This brings main.c back to identity with the Linus sources, so I'll follow this checkin with a revert to vendor branch.) Index: main.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/init/main.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- main.c 14 Jan 2003 23:55:18 -0000 1.12 +++ main.c 23 Jan 2003 22:54:49 -0000 1.13 @@ -51,7 +51,7 @@ * To avoid associated bogus bug reports, we flatly refuse to compile * with a gcc that is known to be too old from the very beginning. */ -#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 95) +#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 91) #error Sorry, your GCC is too old. It builds incorrect kernels. #endif @@ -75,10 +75,6 @@ #ifdef CONFIG_TC extern void tc_init(void); -#endif - -#ifdef CONFIG_VAX -extern void vax_dev_init(void); #endif #if defined(CONFIG_SYSVIPC) |
From: Kenn H. <ke...@us...> - 2003-01-23 22:52:28
|
Update of /cvsroot/linux-vax/kernel-2.5/mm In directory sc8-pr-cvs1:/tmp/cvs-serv11426/mm Modified Files: vmalloc.c Log Message: Need to include <linux/mm.h>. This change will be done by Linus in 2.5.22, at which time we'll revert to his version again. Index: vmalloc.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/mm/vmalloc.c,v retrieving revision 1.1.1.7 retrieving revision 1.2 diff -u -r1.1.1.7 -r1.2 --- vmalloc.c 16 Jan 2003 20:43:25 -0000 1.1.1.7 +++ vmalloc.c 23 Jan 2003 22:52:25 -0000 1.2 @@ -10,6 +10,7 @@ #include <linux/slab.h> #include <linux/vmalloc.h> #include <linux/spinlock.h> +#include <linux/mm.h> #include <linux/highmem.h> #include <linux/smp_lock.h> |
From: Kenn H. <ke...@us...> - 2003-01-23 22:52:28
|
Update of /cvsroot/linux-vax/kernel-2.5/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv11426/kernel Modified Files: fork.c Log Message: Need to include <linux/mm.h>. This change will be done by Linus in 2.5.22, at which time we'll revert to his version again. Index: fork.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/kernel/fork.c,v retrieving revision 1.1.1.15 retrieving revision 1.2 diff -u -r1.1.1.15 -r1.2 --- fork.c 16 Jan 2003 20:43:25 -0000 1.1.1.15 +++ fork.c 23 Jan 2003 22:52:25 -0000 1.2 @@ -24,6 +24,7 @@ #include <linux/file.h> #include <linux/binfmts.h> #include <linux/fs.h> +#include <linux/mm.h> #include <asm/pgtable.h> #include <asm/pgalloc.h> |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:27
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-sparc In directory sc8-pr-cvs1:/tmp/cvs-serv10295/include/asm-sparc Removed Files: ultra.h Log Message: Merge with 2.5.21 --- ultra.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:27
|
Update of /cvsroot/linux-vax/kernel-2.5/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv10295/kernel Removed Files: info.c Log Message: Merge with 2.5.21 --- info.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:27
|
Update of /cvsroot/linux-vax/kernel-2.5/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv10295/scripts Removed Files: mkdep.c mkversion_h Log Message: Merge with 2.5.21 --- mkdep.c DELETED --- --- mkversion_h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:27
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-s390x In directory sc8-pr-cvs1:/tmp/cvs-serv10295/include/asm-s390x Removed Files: ccwcache.h s390-gdbregs.h Log Message: Merge with 2.5.21 --- ccwcache.h DELETED --- --- s390-gdbregs.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:26
|
Update of /cvsroot/linux-vax/kernel-2.5/fs/ntfs In directory sc8-pr-cvs1:/tmp/cvs-serv10295/fs/ntfs Removed Files: attraops.c Log Message: Merge with 2.5.21 --- attraops.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:26
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-s390 In directory sc8-pr-cvs1:/tmp/cvs-serv10295/include/asm-s390 Removed Files: ccwcache.h s390-gdbregs.h Log Message: Merge with 2.5.21 --- ccwcache.h DELETED --- --- s390-gdbregs.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:24
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/video In directory sc8-pr-cvs1:/tmp/cvs-serv10295/drivers/video Removed Files: dn_accel.h dn_cfb4.c dn_cfb8.c neofb.h tx3912fb.h Log Message: Merge with 2.5.21 --- dn_accel.h DELETED --- --- dn_cfb4.c DELETED --- --- dn_cfb8.c DELETED --- --- neofb.h DELETED --- --- tx3912fb.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:23
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/s390/char In directory sc8-pr-cvs1:/tmp/cvs-serv10295/drivers/s390/char Removed Files: tape3590.c tape3590.h Log Message: Merge with 2.5.21 --- tape3590.c DELETED --- --- tape3590.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:22
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/s390 In directory sc8-pr-cvs1:/tmp/cvs-serv10295/drivers/s390 Removed Files: ccwcache.c idals.c s390io.c Log Message: Merge with 2.5.21 --- ccwcache.c DELETED --- --- idals.c DELETED --- --- s390io.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:22
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/arm/mach-sa1100 In directory sc8-pr-cvs1:/tmp/cvs-serv10295/arch/arm/mach-sa1100 Removed Files: sleep.h Log Message: Merge with 2.5.21 --- sleep.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-23 22:50:22
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/s390/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv10295/arch/s390/kernel Removed Files: ieee.h Log Message: Merge with 2.5.21 --- ieee.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-16 01:52:05
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm In directory sc8-pr-cvs1:/tmp/cvs-serv15810/include/asm/mm Modified Files: pgtable.h Log Message: 2.5.20 introduces an arch-independent swap entry layout on top of the arch-dependent __swp_entry, __swp_type, etc macros. Index: pgtable.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm/pgtable.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- pgtable.h 12 Dec 2002 01:19:21 -0000 1.7 +++ pgtable.h 16 Jan 2003 01:52:03 -0000 1.8 @@ -164,11 +164,11 @@ #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page)) /* Encode and de-code a swap entry */ -#define SWP_TYPE(x) (((x).val >> 1) & 0x3f) -#define SWP_OFFSET(x) ((x).val >> 8) -#define SWP_ENTRY(type, offset) ((swp_entry_t) { ((type) << 1) | ((offset) << 8) }) -#define pte_to_swp_entry(x) ((swp_entry_t) { pte_val(x) }) -#define swp_entry_to_pte(x) ((pte_t) { (x).val }) +#define __swp_type(x) (((x).val >> 1) & 0x3f) +#define __swp_offset(x) ((x).val >> 8) +#define __swp_entry(type, offset) ((swp_entry_t) { ((type) << 1) | ((offset) << 8) }) +#define __pte_to_swp_entry(x) ((swp_entry_t) { pte_val(x) }) +#define __swp_entry_to_pte(x) ((pte_t) { (x).val }) /* Memory sizing. You'll need to #include <asm/rpb.h> to get * the declaration of boot_rpb. */ |
From: Kenn H. <ke...@us...> - 2003-01-16 01:50:34
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm In directory sc8-pr-cvs1:/tmp/cvs-serv15697/include/asm/mm Modified Files: page.h Log Message: clear_user_page() and copy_user_page() macros get an additional parameter in 2.5.20 (struct page * for the page to be cleared or copied) Index: page.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm/page.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- page.h 28 Dec 2002 02:12:01 -0000 1.5 +++ page.h 16 Jan 2003 01:50:30 -0000 1.6 @@ -38,8 +38,8 @@ #define clear_page(page) memset((void *)(page), 0, PAGE_SIZE) #define copy_page(to,from) memcpy((void *)(to), (void *)(from), PAGE_SIZE) -#define clear_user_page(page, vaddr) clear_page(page) -#define copy_user_page(to, from, vaddr) copy_page(to, from) +#define clear_user_page(page, vaddr, pg) clear_page(page) +#define copy_user_page(to, from, vaddr, pg) copy_page(to, from) /* The hardware pushes this info on the stack when an access violation |
From: Kenn H. <ke...@us...> - 2003-01-14 23:55:24
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-arm/proc-armo In directory sc8-pr-cvs1:/tmp/cvs-serv1632/include/asm-arm/proc-armo Removed Files: uncompress.h Log Message: Merge with 2.5.20. Also catch up on some file deletions in 2.5.17 to 2.5.19 that I missed earlier. --- uncompress.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-14 23:55:24
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1:/tmp/cvs-serv1632/include/linux Removed Files: bfs_fs_i.h bfs_fs_sb.h locks.h quotacompat.h Log Message: Merge with 2.5.20. Also catch up on some file deletions in 2.5.17 to 2.5.19 that I missed earlier. --- bfs_fs_i.h DELETED --- --- bfs_fs_sb.h DELETED --- --- locks.h DELETED --- --- quotacompat.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-14 23:55:23
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi/aic7xxx In directory sc8-pr-cvs1:/tmp/cvs-serv1632/drivers/scsi/aic7xxx Removed Files: aic7xxx_reg.h aic7xxx_seq.h Log Message: Merge with 2.5.20. Also catch up on some file deletions in 2.5.17 to 2.5.19 that I missed earlier. --- aic7xxx_reg.h DELETED --- --- aic7xxx_seq.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-14 23:55:23
|
Update of /cvsroot/linux-vax/kernel-2.5/init In directory sc8-pr-cvs1:/tmp/cvs-serv1632/init Modified Files: main.c Log Message: Merge with 2.5.20. Also catch up on some file deletions in 2.5.17 to 2.5.19 that I missed earlier. Index: main.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/init/main.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- main.c 11 Jan 2003 15:36:13 -0000 1.11 +++ main.c 14 Jan 2003 23:55:18 -0000 1.12 @@ -51,7 +51,7 @@ * To avoid associated bogus bug reports, we flatly refuse to compile * with a gcc that is known to be too old from the very beginning. */ -#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 91) +#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 95) #error Sorry, your GCC is too old. It builds incorrect kernels. #endif |
From: Kenn H. <ke...@us...> - 2003-01-14 23:55:23
|
Update of /cvsroot/linux-vax/kernel-2.5/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv1632/scripts Removed Files: pathdown.sh Log Message: Merge with 2.5.20. Also catch up on some file deletions in 2.5.17 to 2.5.19 that I missed earlier. --- pathdown.sh DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-14 23:55:23
|
Update of /cvsroot/linux-vax/kernel-2.5/fs/bfs In directory sc8-pr-cvs1:/tmp/cvs-serv1632/fs/bfs Removed Files: bfs_defs.h Log Message: Merge with 2.5.20. Also catch up on some file deletions in 2.5.17 to 2.5.19 that I missed earlier. --- bfs_defs.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-01-14 23:55:22
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/ide In directory sc8-pr-cvs1:/tmp/cvs-serv1632/drivers/ide Removed Files: ide-features.c ide-geometry.c ide-probe.c Log Message: Merge with 2.5.20. Also catch up on some file deletions in 2.5.17 to 2.5.19 that I missed earlier. --- ide-features.c DELETED --- --- ide-geometry.c DELETED --- --- ide-probe.c DELETED --- |