rpms/kernel/devel linux-2.6-crash-driver.patch, 1.3, 1.4 linux-2.6-filesystem-caching-for-afs-and-nfs.patch, 1.2, 1.3 linux-2.6-modsign-core.patch, 1.4, 1.5 linux-2.6-nfs-superblock-sharing.patch, 1.2, 1.3 linux-2.6-s390-kprobes.patch, 1.2, 1.3 linux-2.6-tux.patch, 1.23, 1.24 linux-2.6-x86-64-edac-support.patch, 1.1, 1.2

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Wed Aug 9 23:40:11 UTC 2006


Author: davej

Update of /cvs/dist/rpms/kernel/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv12578

Modified Files:
	linux-2.6-crash-driver.patch 
	linux-2.6-filesystem-caching-for-afs-and-nfs.patch 
	linux-2.6-modsign-core.patch 
	linux-2.6-nfs-superblock-sharing.patch 
	linux-2.6-s390-kprobes.patch linux-2.6-tux.patch 
	linux-2.6-x86-64-edac-support.patch 
Log Message:
nothing should #include <linux/config.h> any more

linux-2.6-crash-driver.patch:
 linux-1060/arch/i386/mm/init.c            |    2 
 linux-1060/arch/ia64/kernel/ia64_ksyms.c  |    3 
 linux-1060/arch/x86_64/mm/init.c          |    3 
 linux-1060/drivers/char/Kconfig           |    2 
 linux-1060/drivers/char/crash.c           |  128 ++++++++++++++++++++++++++++++
 linux-1060/include/asm-i386/crash.h       |   75 +++++++++++++++++
 linux-1060/include/asm-ia64/crash.h       |   90 +++++++++++++++++++++
 linux-1060/include/asm-x86_64/crash.h     |   75 +++++++++++++++++
 linux-2.6.16.noarch/drivers/char/Makefile |    1 
 9 files changed, 379 insertions(+)

Index: linux-2.6-crash-driver.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6-crash-driver.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- linux-2.6-crash-driver.patch	2 Jul 2006 03:23:40 -0000	1.3
+++ linux-2.6-crash-driver.patch	9 Aug 2006 23:40:06 -0000	1.4
@@ -45,7 +45,7 @@
 diff -urNp --exclude-from=/home/davej/.exclude linux-1050/drivers/char/crash.c linux-1060/drivers/char/crash.c
 --- linux-1050/drivers/char/crash.c
 +++ linux-1060/drivers/char/crash.c
-@@ -0,0 +1,129 @@
+@@ -0,0 +1,128 @@
 +/*
 + *  linux/drivers/char/crash.c
 + *
@@ -72,7 +72,6 @@
 + *****************************************************************************/
 +
 +#include <linux/module.h>
-+#include <linux/config.h>
 +#include <linux/types.h>
 +#include <linux/miscdevice.h>
 +#include <linux/init.h>

linux-2.6-filesystem-caching-for-afs-and-nfs.patch:
 b/Documentation/filesystems/caching/backend-api.txt |  357 ++++++
 b/Documentation/filesystems/caching/fscache.txt     |  151 ++
 b/Documentation/filesystems/caching/netfs-api.txt   |  752 ++++++++++++++
 b/fs/Kconfig                                        |   15 
 b/fs/Makefile                                       |    1 
 b/fs/afs/cell.c                                     |  109 +-
 b/fs/afs/cell.h                                     |   16 
 b/fs/afs/cmservice.c                                |    2 
 b/fs/afs/dir.c                                      |    5 
 b/fs/afs/file.c                                     |  246 +++-
 b/fs/afs/fsclient.c                                 |    4 
 b/fs/afs/inode.c                                    |   45 
 b/fs/afs/internal.h                                 |   25 
 b/fs/afs/main.c                                     |   24 
 b/fs/afs/mntpt.c                                    |   12 
 b/fs/afs/proc.c                                     |    1 
 b/fs/afs/server.c                                   |    3 
 b/fs/afs/vlocation.c                                |  179 ++-
 b/fs/afs/vnode.c                                    |  248 +++-
 b/fs/afs/vnode.h                                    |   10 
 b/fs/afs/volume.c                                   |   78 -
 b/fs/afs/volume.h                                   |   28 
 b/fs/ext2/dir.c                                     |    6 
 b/fs/ext3/inode.c                                   |   10 
 b/fs/freevxfs/vxfs_subr.c                           |    2 
 b/fs/fscache/Makefile                               |   11 
 b/fs/fscache/cookie.c                               | 1045 ++++++++++++++++++++
 b/fs/fscache/fscache-int.h                          |   93 +
 b/fs/fscache/fsdef.c                                |  110 ++
 b/fs/fscache/main.c                                 |  105 ++
 b/fs/fscache/page.c                                 |  537 ++++++++++
 b/fs/reiserfs/inode.c                               |   10 
 b/fs/ufs/dir.c                                      |    6 
 b/include/linux/fscache-cache.h                     |  243 ++++
 b/include/linux/fscache.h                           |  495 +++++++++
 b/include/linux/page-flags.h                        |   15 
 b/include/linux/pagemap.h                           |   11 
 b/mm/filemap.c                                      |   17 
 b/mm/migrate.c                                      |    4 
 b/mm/page_alloc.c                                   |    2 
 b/mm/readahead.c                                    |   25 
 fs/Kconfig                                          |    7 
 fs/afs/cache.h                                      |   27 
 fs/afs/dir.c                                        |   10 
 44 files changed, 4659 insertions(+), 443 deletions(-)

Index: linux-2.6-filesystem-caching-for-afs-and-nfs.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6-filesystem-caching-for-afs-and-nfs.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- linux-2.6-filesystem-caching-for-afs-and-nfs.patch	28 Jul 2006 21:41:06 -0000	1.2
+++ linux-2.6-filesystem-caching-for-afs-and-nfs.patch	9 Aug 2006 23:40:06 -0000	1.3
@@ -4063,7 +4063,7 @@
 index 0000000..b9697f9
 --- /dev/null
 +++ b/include/linux/fscache.h
-@@ -0,0 +1,496 @@
+@@ -0,0 +1,495 @@
 +/* fscache.h: general filesystem caching interface
 + *
 + * Copyright (C) 2004-5 Red Hat, Inc. All Rights Reserved.
@@ -4084,7 +4084,6 @@
 +#ifndef _LINUX_FSCACHE_H
 +#define _LINUX_FSCACHE_H
 +
-+#include <linux/config.h>
 +#include <linux/fs.h>
 +#include <linux/list.h>
 +#include <linux/pagemap.h>

linux-2.6-modsign-core.patch:
 linux-2.6.12/kernel/module-verify.c  |    2 
 linux-2.6.17.noarch/kernel/Makefile  |    3 
 linux-900/include/linux/module.h     |    3 
 linux-900/init/Kconfig               |   16 +
 linux-900/kernel/module-verify-sig.c |  441 +++++++++++++++++++++++++++++++++++
 linux-900/kernel/module-verify.c     |  339 ++++++++++++++++++++++++++
 linux-900/kernel/module-verify.h     |   37 ++
 linux-900/kernel/module.c            |   19 +
 8 files changed, 855 insertions(+), 5 deletions(-)

Index: linux-2.6-modsign-core.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6-modsign-core.patch,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- linux-2.6-modsign-core.patch	27 Jun 2006 00:39:13 -0000	1.4
+++ linux-2.6-modsign-core.patch	9 Aug 2006 23:40:07 -0000	1.5
@@ -110,7 +110,7 @@
 diff -urNp --exclude-from=/home/davej/.exclude linux-811/kernel/module-verify.c linux-900/kernel/module-verify.c
 --- linux-811/kernel/module-verify.c
 +++ linux-900/kernel/module-verify.c
-@@ -0,0 +1,340 @@
+@@ -0,0 +1,339 @@
 +/* module-verify.c: module verifier
 + *
 + * Written by David Howells (dhowells at redhat.com)
@@ -121,7 +121,6 @@
 + * 2 of the License, or (at your option) any later version.
 + */
 +
-+#include <linux/config.h>
 +#include <linux/kernel.h>
 +#include <linux/module.h>
 +#include <linux/slab.h>
@@ -495,7 +494,7 @@
 diff -urNp --exclude-from=/home/davej/.exclude linux-811/kernel/module-verify-sig.c linux-900/kernel/module-verify-sig.c
 --- linux-811/kernel/module-verify-sig.c
 +++ linux-900/kernel/module-verify-sig.c
-@@ -0,0 +1,442 @@
+@@ -0,0 +1,441 @@
 +/* module-verify-sig.c: module signature checker
 + *
 + * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
@@ -508,7 +507,6 @@
 + * 2 of the License, or (at your option) any later version.
 + */
 +
-+#include <linux/config.h>
 +#include <linux/kernel.h>
 +#include <linux/module.h>
 +#include <linux/slab.h>

linux-2.6-nfs-superblock-sharing.patch:
 b/fs/Kconfig                 |    7 
 b/fs/dcache.c                |  164 +++-
 b/fs/nfs/Makefile            |    6 
 b/fs/nfs/callback.c          |   15 
 b/fs/nfs/callback.h          |    7 
 b/fs/nfs/callback_proc.c     |    4 
 b/fs/nfs/client.c            |  311 ++++++++
 b/fs/nfs/delegation.c        |   24 
 b/fs/nfs/delegation.h        |   10 
 b/fs/nfs/dir.c               |    2 
 b/fs/nfs/file.c              |    2 
 b/fs/nfs/fscache.c           |  345 +++++++++
 b/fs/nfs/fscache.h           |  466 ++++++++++++
 b/fs/nfs/getroot.c           |  305 ++++++++
 b/fs/nfs/idmap.c             |   14 
 b/fs/nfs/inode.c             |    4 
 b/fs/nfs/internal.h          |   12 
 b/fs/nfs/namespace.c         |    3 
 b/fs/nfs/nfs3proc.c          |    2 
 b/fs/nfs/nfs4_fs.h           |   30 
 b/fs/nfs/nfs4namespace.c     |    8 
 b/fs/nfs/nfs4proc.c          |   32 
 b/fs/nfs/nfs4renewd.c        |    8 
 b/fs/nfs/nfs4state.c         |   50 -
 b/fs/nfs/nfs4xdr.c           |   14 
 b/fs/nfs/pagelist.c          |    3 
 b/fs/nfs/proc.c              |    2 
 b/fs/nfs/read.c              |    2 
 b/fs/nfs/super.c             |   40 -
 b/fs/nfs/sysctl.c            |   43 +
 b/fs/nfs/write.c             |    2 
 b/include/linux/dcache.h     |    1 
 b/include/linux/nfs4_mount.h |    1 
 b/include/linux/nfs_fs.h     |    1 
 b/include/linux/nfs_fs_sb.h  |    2 
 b/include/linux/nfs_idmap.h  |   14 
 b/include/linux/nfs_mount.h  |    1 
 b/include/linux/nfs_xdr.h    |    1 
 fs/nfs/Makefile              |    3 
 fs/nfs/callback.c            |   16 
 fs/nfs/callback_proc.c       |    9 
 fs/nfs/client.c              | 1152 ++++++++++++++++++++++++++++++
 fs/nfs/delegation.c          |   21 
 fs/nfs/dir.c                 |   16 
 fs/nfs/file.c                |   33 
 fs/nfs/getroot.c             |    5 
 fs/nfs/idmap.c               |   27 
 fs/nfs/inode.c               |   31 
 fs/nfs/internal.h            |  134 ++-
 fs/nfs/namespace.c           |   31 
 fs/nfs/nfs3proc.c            |    8 
 fs/nfs/nfs4_fs.h             |   58 -
 fs/nfs/nfs4namespace.c       |  110 ++
 fs/nfs/nfs4proc.c            |  149 +--
 fs/nfs/nfs4renewd.c          |   15 
 fs/nfs/nfs4state.c           |  156 ----
 fs/nfs/nfs4xdr.c             |   28 
 fs/nfs/proc.c                |    4 
 fs/nfs/read.c                |   30 
 fs/nfs/super.c               | 1630 +++++++++++++++----------------------------
 fs/nfs/write.c               |   11 
 include/linux/nfs_fs.h       |    7 
 include/linux/nfs_fs_sb.h    |   99 ++
 include/linux/nfs_idmap.h    |    2 
 include/linux/nfs_xdr.h      |    9 
 65 files changed, 4083 insertions(+), 1669 deletions(-)

Index: linux-2.6-nfs-superblock-sharing.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6-nfs-superblock-sharing.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- linux-2.6-nfs-superblock-sharing.patch	28 Jul 2006 21:41:06 -0000	1.2
+++ linux-2.6-nfs-superblock-sharing.patch	9 Aug 2006 23:40:07 -0000	1.3
@@ -2251,7 +2251,7 @@
 index 0000000..cb5e924
 --- /dev/null
 +++ b/fs/nfs/client.c
-@@ -0,0 +1,312 @@
+@@ -0,0 +1,311 @@
 +/* client.c: NFS client sharing and management code
 + *
 + * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
@@ -2264,7 +2264,6 @@
 + */
 +
 +
-+#include <linux/config.h>
 +#include <linux/module.h>
 +#include <linux/init.h>
 +
@@ -5517,7 +5516,7 @@
 index 0000000..977e590
 --- /dev/null
 +++ b/fs/nfs/getroot.c
-@@ -0,0 +1,306 @@
+@@ -0,0 +1,305 @@
 +/* getroot.c: get the root dentry for an NFS mount
 + *
 + * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
@@ -5529,7 +5528,6 @@
 + * 2 of the License, or (at your option) any later version.
 + */
 +
-+#include <linux/config.h>
 +#include <linux/module.h>
 +#include <linux/init.h>
 +
@@ -8629,7 +8627,7 @@
 index 0000000..50d223a
 --- /dev/null
 +++ b/fs/nfs/fscache.c
-@@ -0,0 +1,346 @@
+@@ -0,0 +1,345 @@
 +/* fscache.c: NFS filesystem cache interface
 + *
 + * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
@@ -8642,7 +8640,6 @@
 + */
 +
 +
-+#include <linux/config.h>
 +#include <linux/init.h>
 +#include <linux/kernel.h>
 +#include <linux/mm.h>

linux-2.6-s390-kprobes.patch:
 linux-2.6.17.noarch/include/asm-s390/kprobes.h             |    1 
 linux-2.6.18-rc1.s390-kprob/arch/s390/Kconfig              |   14 
 linux-2.6.18-rc1.s390-kprob/arch/s390/kernel/Makefile      |    1 
 linux-2.6.18-rc1.s390-kprob/arch/s390/kernel/entry.S       |   12 
 linux-2.6.18-rc1.s390-kprob/arch/s390/kernel/entry64.S     |   12 
 linux-2.6.18-rc1.s390-kprob/arch/s390/kernel/kprobes.c     |  682 +++++++++++++
 linux-2.6.18-rc1.s390-kprob/arch/s390/kernel/traps.c       |   41 
 linux-2.6.18-rc1.s390-kprob/arch/s390/kernel/vmlinux.lds.S |    1 
 linux-2.6.18-rc1.s390-kprob/arch/s390/mm/fault.c           |   40 
 linux-2.6.18-rc1.s390-kprob/include/asm-s390/kdebug.h      |   59 +
 linux-2.6.18-rc1.s390-kprob/include/asm-s390/kprobes.h     |  111 ++
 11 files changed, 968 insertions(+), 6 deletions(-)

Index: linux-2.6-s390-kprobes.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6-s390-kprobes.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- linux-2.6-s390-kprobes.patch	1 Aug 2006 23:44:59 -0000	1.2
+++ linux-2.6-s390-kprobes.patch	9 Aug 2006 23:40:07 -0000	1.3
@@ -88,7 +88,7 @@
 diff -Naur linux-2.6.18-rc1/arch/s390/kernel/kprobes.c linux-2.6.18-rc1.s390-kprob/arch/s390/kernel/kprobes.c
 --- linux-2.6.18-rc1/arch/s390/kernel/kprobes.c	1969-12-31 16:00:00.000000000 -0800
 +++ linux-2.6.18-rc1.s390-kprob/arch/s390/kernel/kprobes.c	2006-07-11 15:16:24.000000000 -0700
-@@ -0,0 +1,683 @@
+@@ -0,0 +1,682 @@
 +/*
 + *  Kernel Probes (KProbes)
 + *
@@ -111,7 +111,6 @@
 + * s390 port, used ppc64 as template. Mike Grundy <grundym at us.ibm.com>
 + */
 +
-+#include <linux/config.h>
 +#include <linux/kprobes.h>
 +#include <linux/ptrace.h>
 +#include <linux/preempt.h>

linux-2.6-tux.patch:
 linux-2.6.16.noarch/include/linux/buffer_head.h |    1 
 linux-2.6.16.noarch/include/linux/sysctl.h      |   50 
 linux-2.6.16.noarch/net/socket.c                |   54 
 linux-2.6.17.noarch/kernel/exit.c               |    9 
 linux-2.6.17.noarch/kernel/fork.c               |    2 
 linux-tux.q/arch/alpha/kernel/systbls.S         |    8 
 linux-tux.q/arch/i386/kernel/syscall_table.S    |   10 
 linux-tux.q/arch/ia64/kernel/entry.S            |    8 
 linux-tux.q/arch/ia64/kernel/ia64_ksyms.c       |    5 
 linux-tux.q/arch/x86_64/ia32/ia32entry.S        |   10 
 linux-tux.q/fs/dcache.c                         |   36 
 linux-tux.q/fs/exec.c                           |    2 
 linux-tux.q/fs/fcntl.c                          |    4 
 linux-tux.q/fs/namei.c                          |   18 
 linux-tux.q/fs/namespace.c                      |    2 
 linux-tux.q/fs/open.c                           |    4 
 linux-tux.q/fs/pipe.c                           |    2 
 linux-tux.q/fs/read_write.c                     |    2 
 linux-tux.q/include/asm-alpha/fcntl.h           |    1 
 linux-tux.q/include/asm-generic/fcntl.h         |    4 
 linux-tux.q/include/asm-i386/unistd.h           |    5 
 linux-tux.q/include/asm-ia64/unistd.h           |    2 
 linux-tux.q/include/asm-sparc/fcntl.h           |    1 
 linux-tux.q/include/asm-sparc64/fcntl.h         |    1 
 linux-tux.q/include/asm-x86_64/unistd.h         |   10 
 linux-tux.q/include/linux/dcache.h              |    8 
 linux-tux.q/include/linux/errno.h               |    3 
 linux-tux.q/include/linux/file.h                |    2 
 linux-tux.q/include/linux/fs.h                  |    7 
 linux-tux.q/include/linux/kmod.h                |    2 
 linux-tux.q/include/linux/namei.h               |    2 
 linux-tux.q/include/linux/net.h                 |    1 
 linux-tux.q/include/linux/sched.h               |    5 
 linux-tux.q/include/linux/skbuff.h              |    2 
 linux-tux.q/include/linux/socket.h              |    4 
 linux-tux.q/include/net/sock.h                  |    8 
 linux-tux.q/include/net/tcp.h                   |    3 
 linux-tux.q/include/net/tux.h                   |  803 ++++++++
 linux-tux.q/include/net/tux_u.h                 |  163 +
 linux-tux.q/kernel/kmod.c                       |   28 
 linux-tux.q/kernel/signal.c                     |    1 
 linux-tux.q/mm/filemap.c                        |   19 
 linux-tux.q/mm/truncate.c                       |    2 
 linux-tux.q/net/Kconfig                         |    1 
 linux-tux.q/net/Makefile                        |    1 
 linux-tux.q/net/core/sock.c                     |    5 
 linux-tux.q/net/ipv4/tcp.c                      |    1 
 linux-tux.q/net/ipv4/tcp_input.c                |    1 
 linux-tux.q/net/ipv4/tcp_output.c               |    3 
 linux-tux.q/net/tux/Kconfig                     |   25 
 linux-tux.q/net/tux/Makefile                    |   12 
 linux-tux.q/net/tux/abuf.c                      |  190 ++
 linux-tux.q/net/tux/accept.c                    |  863 +++++++++
 linux-tux.q/net/tux/cachemiss.c                 |  265 ++
 linux-tux.q/net/tux/cgi.c                       |  171 +
 linux-tux.q/net/tux/directory.c                 |  302 +++
 linux-tux.q/net/tux/extcgi.c                    |  329 +++
 linux-tux.q/net/tux/gzip.c                      |   40 
 linux-tux.q/net/tux/input.c                     |  641 +++++++
 linux-tux.q/net/tux/logger.c                    |  837 +++++++++
 linux-tux.q/net/tux/main.c                      | 1417 +++++++++++++++
 linux-tux.q/net/tux/mod.c                       |  262 ++
 linux-tux.q/net/tux/output.c                    |  352 +++
 linux-tux.q/net/tux/parser.h                    |  102 +
 linux-tux.q/net/tux/postpone.c                  |   77 
 linux-tux.q/net/tux/proc.c                      | 1149 ++++++++++++
 linux-tux.q/net/tux/proto_ftp.c                 | 1555 ++++++++++++++++
 linux-tux.q/net/tux/proto_http.c                | 2197 ++++++++++++++++++++++++
 linux-tux.q/net/tux/redirect.c                  |  172 +
 linux-tux.q/net/tux/times.c                     |  392 ++++
 linux-tux.q/net/tux/times.h                     |   26 
 linux-tux.q/net/tux/userspace.c                 |   27 
 72 files changed, 12698 insertions(+), 31 deletions(-)

Index: linux-2.6-tux.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6-tux.patch,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- linux-2.6-tux.patch	6 Jul 2006 01:11:56 -0000	1.23
+++ linux-2.6-tux.patch	9 Aug 2006 23:40:07 -0000	1.24
@@ -772,7 +772,7 @@
 ===================================================================
 --- /dev/null
 +++ linux-tux.q/include/net/tux.h
-@@ -0,0 +1,804 @@
+@@ -0,0 +1,803 @@
 +#ifndef _NET_TUX_H
 +#define _NET_TUX_H
 +
@@ -794,7 +794,6 @@
 +#include <linux/mman.h>
 +#include <linux/swap.h>
 +#include <linux/ctype.h>
-+#include <linux/config.h>
 +#include <linux/module.h>
 +#include <linux/kernel.h>
 +#include <linux/unistd.h>

linux-2.6-x86-64-edac-support.patch:
 MAINTAINERS            |    6 
 drivers/edac/Kconfig   |    7 
 drivers/edac/Makefile  |    1 
 drivers/edac/edac_mc.c |   28 
 drivers/edac/edac_mc.h |    1 
 drivers/edac/k8_edac.c | 1881 +++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 1924 insertions(+)

Index: linux-2.6-x86-64-edac-support.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6-x86-64-edac-support.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- linux-2.6-x86-64-edac-support.patch	9 Aug 2006 21:45:01 -0000	1.1
+++ linux-2.6-x86-64-edac-support.patch	9 Aug 2006 23:40:07 -0000	1.2
@@ -53,7 +53,7 @@
 ===================================================================
 --- /dev/null	1970-01-01 00:00:00.000000000 +0000
 +++ linux-2.6.17.noarch/drivers/edac/k8_edac.c	2006-07-31 09:08:17.000000000 -0300
-@@ -0,0 +1,1882 @@
+@@ -0,0 +1,1881 @@
 +/*
 + * AMD K8 class Memory Controller kernel module
 + *
@@ -84,7 +84,6 @@
 + * refer to this document.
 + */
 +
-+#include <linux/config.h>
 +#include <linux/module.h>
 +#include <linux/init.h>
 +#include <linux/pci.h>




More information about the fedora-cvs-commits mailing list