| From | Subject | Date |
|---|---|---|
| Theodore Tso | Re: [malware-list] [RFC 0/5] [TALPA] Intro toalinuxinterface...
This is actually quite shocking to me. You don't know how to define
the threat model? And you call yourself in the security business?
Read some books or essays by Bruce Schneier. A good one might be his
recent book, "Beyond Fear: Thinking Sensibly About Security In An
Uncertain World".
The naive refusal to think about threat models is why we have to
submit to really insane, useless, "security theater" every time we get
on an Airplane and have to take off our shoes and throw our bottleed
water...
| Aug 5, 7:55 pm 2008 |
| Elias Oltmanns | Re: [PATCH 3/5] libata: Implement disk shock protection supp...
[Resending because gmane cut off the To: header in Pavel's email, sorry.]
Not quite, I'm afraid. Even if the disk isn't spinning, we still have to
make sure that it won't spin up in a precarious situation. Of course, if
it wasn't user space but some kernel routine that consults the
accelerometer and decides when to stop I/O, then we could indeed stop
querying the accelerometer while the disk is in standby mode and delay a
subsequent spin up for the time required to gather the necessary
accelero...
| Aug 5, 6:57 pm 2008 |
| Robert P. J. Day | does an initcall level of "0s" actually exist?
from include/asm-generic/vmlinux.lds.h:
#define INITCALLS \
*(.initcallearly.init) \
VMLINUX_SYMBOL(__early_initcall_end) = .; \
*(.initcall0.init) \
*(.initcall0s.init) \
*(.initcall1.init) \
*(.init...
| Aug 5, 6:51 pm 2008 |
| Robert P. J. Day | [PATCH] Correct comment in identify_ramdisk_image() routine.
Correct the comment to reflect that a gzipped image will return zero,
not -1.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
---
the code is correct, it's only the comment that's wrong.
diff --git a/init/do_mounts_rd.c b/init/do_mounts_rd.c
index fedef93..a7c748f 100644
--- a/init/do_mounts_rd.c
+++ b/init/do_mounts_rd.c
@@ -71,7 +71,7 @@ identify_ramdisk_image(int fd, int start_block)
sys_read(fd, buf, size);
/*
- * If it matches the gzip magic numbers, return -1...
| Aug 5, 6:36 pm 2008 |
| Adrian Bunk | [2.6 patch] KVM: fix userspace ABI breakage
The following part of commit 9ef621d3be56e1188300476a8102ff54f7b6793f
(KVM: Support mixed endian machines) changed on the size of a struct
that is exported to userspace:
include/linux/kvm.h:
@@ -318,14 +318,14 @@ struct kvm_trace_rec {
__u32 vcpu_id;
union {
struct {
- __u32 cycle_lo, cycle_hi;
+ __u64 cycle_u64;
__u32 extra_u32[KVM_TRC_EXTRA_MAX];
} cycle;
struct {
__u32 extra_u32[KVM_TRC_EXTRA_MAX];
} nocycle;
} u;
-};
+} __attribute__((packed));
...
| Aug 5, 6:36 pm 2008 |
| Adrian Bunk | [2.6 patch] #error for gcc 4.1.{0,1}
gcc 4.1.0 and 4.1.1 are known to miscompile the kernel:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27781
Usage of weak functions has become a common pattern in the kernel, and
usages get added in each kernel version increasing the probability of
bugs with each kernel release.
This miscompilation of weak functions can result in subtle runtime
errors.
#error for gcc 4.1.0 and 4.1.1 to prevent users from running into
this bug.
Note:
We already printed a #warning for gcc 4.1.0 due to a...
| Aug 5, 6:29 pm 2008 |
| Greg KH | Re: [malware-list] [RFC 0/5] [TALPA] Intro toalinuxinterface...
If you can not define this, in a precise manner, then how can we expect
to review the proposed solution to ensure that it matches your needs?
Without that, this patchset is going to go nowhere but into the circular
bin :(
greg k-h
--
| Aug 5, 6:26 pm 2008 |
| Al Viro | Re: [malware-list] [RFC 0/5] [TALPA] Intro toalinuxinterface...
Excuse me? One of those questions had been a very specific yes-or-no one
and I certainly hope that we all can understand either answer to such...
For the record, the question is
"Do you or do you not expect the malware to be active on scanning host?"
I hope that relevance of that to the analysis of software involved in
scanning should be obvious.
--
| Aug 5, 7:37 pm 2008 |
| Eric Paris | Re: [malware-list] [RFC 0/5] [TALPA] Intro toalinuxinterface...
I do believe for a number of AV vendors the answer is yes. I will try
to have some offline conversations with the right people at a number of
vendors and work to better define the threats that they wish to or
believe they are able to help mitigate.
--
| Aug 5, 7:48 pm 2008 |
| Theodore Tso | Re: [malware-list] [RFC 0/5] [TALPA] Intro toalinuxinterface...
OK, and if the malware is running on the machine, does the malware
have root (superuser) access?
- Ted
--
| Aug 5, 7:57 pm 2008 |
| David Witbrodt | Re: HPET regression in 2.6.26 versus 2.6.25
In my OP, I mentioned that I submitted a bug report to the Debian BTS
before coming to LKML. I hoped to keep the bug an internal Debian matter,
since the kernels I compile were always from Debianized kernel sources.
Below I comply with your request, booting the kernel built from the HEAD
of the git tree I downloaded yesterday, dated
Fri Aug 1 14:59:11 2008 -0700
and with commit ID
2b12a4c524812fb3f6ee590a02e65b95c8c32229
Before continuing, I would like to mention that in my origi...
| Aug 5, 6:16 pm 2008 |
| Randy Dunlap | [PATCH] docbook: fix s390 fatal error after header files moved
From: Randy Dunlap <randy.dunlap@oracle.com>
cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Fix (fatal error) s390 docbook file to handle renamed header files.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
Documentation/DocBook/s390-drivers.tmpl | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
--- linux-2.6.27-rc1-git6.orig/Documentation/DocBook/s390-drivers.tmpl
+++ linux-2.6.27-rc1-git6/Documentation/DocBook/s390-drivers.tmpl
@@ -100,7 +100,7 ...
| Aug 5, 5:59 pm 2008 |
| Alexander Beregalov | [PATCH] saa7134-core.c: fix warning
From: Alexander Beregalov <a.beregalov@gmail.com>
saa7134-core.c: fix warning
drivers/media/video/saa7134/saa7134-core.c:366: warning:
'saa7134_buffer_requeue' defined but not used
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
---
drivers/media/video/saa7134/saa7134-core.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/media/video/saa7134/saa7134-core.c b/drivers/media/video/saa7134/saa7134-core.c
index 75d6184..0473a79 100644
...
| Aug 5, 5:31 pm 2008 |
| Chris Mason | Btrfs v0.16 released
Hello everyone,
Btrfs v0.16 is available for download, please see
http://btrfs.wiki.kernel.org/ for download links and project
information.
v0.16 has a shiny new disk format, and is not compatible with
filesystems created by older Btrfs releases. But, it should be the
fastest Btrfs yet, with a wide variety of scalability fixes and new
features.
There were quite a few contributors this time around, but big thanks to
Josef Bacik and Yan Zheng for their help on this release. Toei Rei also
h...
| Aug 5, 3:01 pm 2008 |
| Pavel Machek | 2.6.27-rc1: keyboard/mouse gone after s2ram
...on thinkpad x60. I can still use power button to shut the machine
down.
s2disk works okay.
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
--
| Aug 5, 5:19 pm 2008 |
| Dmitry Torokhov | Re: 2.6.27-rc1: keyboard/mouse gone after s2ram
Does it help if you revert 6aabcdffd1a5f8f5b906696e58069c4f8fced542?
Can I get a log with i8042.debug please?
--
Dmitry
--
| Aug 5, 7:11 pm 2008 |
| Pavel Machek | 2.6.27-rc1: softcursor behaviour changed
Hi!
In 2.6.26, this
echo -e "\33[10;5000]\33[11;50]\33[?18;0;136c\33[?102m"
produces some variation on cursor. on 2.6.27-rc1, I have no cursor at
all :-(.
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
--
| Aug 5, 5:20 pm 2008 |
| Alexander Beregalov | [PATCH] sparc: serio/i8042-sparcio.h: fix warning
From: Alexander Beregalov <a.beregalov@gmail.com>
sparc: i8042-sparcio.h: fix warning
drivers/input/serio/i8042-sparcio.h:95: warning: 'sparc_i8042_driver'
defined but not used
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
---
drivers/input/serio/i8042-sparcio.h | 19 +++++++++++++------
1 files changed, 13 insertions(+), 6 deletions(-)
diff --git a/drivers/input/serio/i8042-sparcio.h b/drivers/input/serio/i8042-sparcio.h
index d9ca558..66bafe3 100644
--- a/dr...
| Aug 5, 5:18 pm 2008 |
| David Witbrodt | Re: HPET regression in 2.6.26 versus 2.6.25
In a previous msg I mentioned that I had tried compiling the HEAD of
my git repository, but only after I had posted to LKML. I was at work
when I wrote the prev msg, so I could not provide details except from
memory.
OK, now I'm home:
======================================
$ git-show
commit 2b12a4c524812fb3f6ee590a02e65b95c8c32229
Merge: 4744b43... 7f30491...
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date: Fri Aug 1 14:59:11 2008 -0700
Merge branch 'release' ...
| Aug 5, 5:12 pm 2008 |
| Adrian Bunk | [2.6 patch] drivers/firmware/iscsi_ibft.c: make 3 functions ...
This patch makes the following needlessly global functions static:
- ibft_attr_show_initiator()
- ibft_attr_show_nic()
- ibft_attr_show_target()
Signed-off-by: Adrian Bunk <bunk@kernel.org>
---
This patch has been sent on:
- 23 Apr 2008
drivers/firmware/iscsi_ibft.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
421adc9620a633d461059da9a8a94315d8a767ea diff --git a/drivers/firmware/iscsi_ibft.c b/drivers/firmware/iscsi_ibft.c
index 8024e3b..8523811 100...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 9/14] uml: memcpy export needs to follow host declara...
From 8bfd04b974689f700bbd053ad6e66b0a95fb80c9
x86_64 defines either memcpy or __memcpy depending on the gcc version, and
it looks like UML needs to follow that in its exporting.
Cc: Gabriel C <nix.or.die@googlemail.com>
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---
arch/um/sys-x86_64/ksyms.c | 4 ++++
1 files changed, 4 insertions(+), 0 deleti...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 3/14] uml: physical memory shouldn't include initial ...
From 60a2988aea701a6424809a5432bf068667aac177
The top of physical memory should be below the initial process stack, not the
top of the address space, at least for as long as the stack isn't known to the
kernel VM system and appropriately reserved.
Cc: "Christopher S. Aker" <caker@theshore.net>
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 10/14] uml: stub needs to tolerate SIGWINCH
From 3d5ede6f776bdb1483bcd086f79c3bf41fed3865
We lost the marking of SIGWINCH as being OK to receive during stub
execution, causing a panic should that happen.
Cc: Benedict Verheyen <benedict.verheyen@gmail.com>
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---
arch/um/os-Linux/skas/process.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 14/14] uml: PATH_MAX needs limits.h
From b6d8adf477439e7086224bc9674c6b6638780783
From: Ingo Molnar <mingo@elte.hu>
Include limits.h to get a definition of PATH_MAX.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---
arch/um/os-Linux/helper.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/arch/um/os-Linux/hel...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 13/14] UML - Fix boot crash
From 7c1fed03b9fa32d4323d5caa6a9c7dcdd7eba767
My copying of linux/init.h didn't go far enough. The definition of
__used singled out gcc minor version 3, but didn't care what the major
version was. This broke when unit-at-a-time was added and gcc started
throwing out initcalls.
This results in an early boot crash when ptrace tries to initialize a
process with an empty, uninitialized register set.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Linus Torvalds <torvalds...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 11/14] uml: work around broken host PTRACE_SYSEMU
From f1ef9167ca4494a8c6d71d0031c73e9c8841eadd
Fedora broke PTRACE_SYSEMU again, and UML crashes as a result when it
doesn't need to. This patch makes the PTRACE_SYSEMU check fail gracefully
and makes UML fall back to PTRACE_SYSCALL.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---
arch/um/os-Linux/start_up.c | 25 ++++++++++++++++---------
1 files chan...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 8/14] missing export of csum_partial() on uml/amd64
From 3e3b48e5198544dd90e27265a70c1a834139e025
From: Al Viro <viro@ftp.linux.org.uk>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---
arch/um/sys-x86_64/ksyms.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/arch/um/sys-x86_64/ksyms.c b/arch/um/sys-x86_64/ksyms.c
index 12c5936..08f63e2 100644
--- a/arch/um/sys-x86_64/ksyms.c
+++ b/arch/um/sys-x86_64/ksyms.c
@@ -14,3 +14,4 @@ EXPORT_S...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 1/14] uml: fix build when SLOB is enabled
From 43f5b3085fdd27c4edf535d938b2cb0ccead4f75
Reintroduce uml_kmalloc for the benefit of UML libc code. The
previous tactic of declaring __kmalloc so it could be called directly
from the libc side of the house turned out to be getting too intimate
with slab, and it doesn't work with slob.
So, the uml_kmalloc wrapper is back. It calls kmalloc or whatever
that translates into, and libc code calls it.
kfree is left alone since that still works, leaving a somewhat
inconsistent API.
Signed-off...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 0/14] UML 2.6.25.x patchset resend
Here's my 2.6.25 patchset again. I've rebased against 2.6.25.14 and
included the correct commit ids this time.
Jeff
--
Work email - jdike at linux dot intel dot com
--
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 5/14] missed kmalloc() in pcap_user.c
From 296cd66f7f6e130fe08e6880ecb13c3fc615a8db
From: Al Viro <viro@ftp.linux.org.uk>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---
arch/um/drivers/pcap_user.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/um/drivers/pcap_user.c b/arch/um/drivers/pcap_user.c
index e980935..5f90358 100644
--- a/arch/um/drivers/pcap_user.c
+++ b/ar...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 7/14] uml: deal with inaccessible address space start
From 40fb16a360d9c6459afee91dc793c1e3374feb94
From: Tom Spink <tspink@gmail.com>
This patch makes os_get_task_size locate the bottom of the address space,
as well as the top. This is for systems which put a lower limit on mmap
addresses. It works by manually scanning pages from zero onwards until a
valid page is found.
Because the bottom of the address space may not be zero, it's not
sufficient to assume the top of the address space is the size of the
address space. The size is the di...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 6/14] uml: deal with host time going backwards
From 06e1e4ffbd1932e288839b3140cda6b8141eb684
Protection against the host's time going backwards (eg, ntp activity on
the host) by keeping track of the time at the last tick and if it's
greater than the current time, keep time stopped until the host catches
up.
Cc: Nix <nix@esperi.org.uk>
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---
arch/um/os-...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 4/14] uml: track and make up lost ticks
From fe2cc53ee013a4d4d0317d418e7019fe6533a5a8
Alarm delivery could be noticably late in the !CONFIG_NOHZ case because lost
ticks weren't being taken into account. This is now treated more carefully,
with the time between ticks being calculated and the appropriate number of
ticks delivered to the timekeeping system.
Cc: Nix <nix@esperi.org.uk>
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds &l...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 2/14] uml: fix bad NTP interaction with clock
From cfd28f6695d0fc047478480791a21bdd4967f98e
UML's supposed nanosecond clock interacts badly with NTP when NTP
decides that the clock has drifted ahead and needs to be slowed down.
Slowing down the clock is done by decrementing the cycle-to-nanosecond
multiplier, which is 1. Decrementing that gives you 0 and time is
stopped.
This is fixed by switching to a microsecond clock, with a multiplier
of 1000.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: WANG Cong <xiyou.wangcong@gm...
| Aug 5, 4:14 pm 2008 |
| Jeff Dike | [PATCH 12/14] [UML] fix gcc ICEs and unresolved externs
From 4f81c5350b44bcc501ab6f8a089b16d064b4d2f6
There are various constraints on the use of unit-at-a-time:
- i386 uses no-unit-at-a-time for pre-4.0 (not 4.3)
- x86_64 uses unit-at-a-time always
Uli reported a crash on x86_64 with gcc 4.1.2 with unit-at-a-time,
resulting in commit c0a18111e571138747a98af18b3a2124df56a0d1
Ingo reported a gcc internal error with gcc 4.3 with no-unit-at-a-timem,
resulting in 22eecde2f9034764a3fd095eecfa3adfb8ec9a98
Benny Halevy is seeing extern inlines not res...
| Aug 5, 4:14 pm 2008 |
| Alexander Beregalov | [PATCH] ocfs2/cluster/netdebug.c: fix warning
From: Alexander Beregalov <a.beregalov@gmail.com>
ocfs2/cluster/netdebug.c: fix warning
fs/ocfs2/cluster/netdebug.c:154: warning: format '%lu' expects
type 'long unsigned int', but argument 17 has type 'suseconds_t'
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
---
fs/ocfs2/cluster/netdebug.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/ocfs2/cluster/netdebug.c b/fs/ocfs2/cluster/netdebug.c
index d8bfa0e..cdc0ed2 100644
--- a/fs...
| Aug 5, 4:10 pm 2008 |
| Joel Becker | Re: [PATCH] ocfs2/cluster/netdebug.c: fix warning
suseconds_t is a signed long. Can you change the format to %ld
and cast to long? Unfortunately, we need the cast, as sparc64 and
parisc treat it as int.
Joel
--
"If you are ever in doubt as to whether or not to kiss a pretty girl,
give her the benefit of the doubt"
-Thomas Carlyle
Joel Becker
Principal Software Developer
Oracle
E-mail: joel.becker@oracle.com
Phone: (650) 506-8127
--
| Aug 5, 4:29 pm 2008 |
| Alexander Beregalov | Re: [PATCH] ocfs2/cluster/netdebug.c: fix warning
Then we should change cast from unsigned long to long for every tv_usec, right?
From: Alexander Beregalov <a.beregalov@gmail.com>
ocfs2/cluster/netdebug.c: fix warning
fs/ocfs2/cluster/netdebug.c:154: warning: format '%lu' expects
type 'long unsigned int', but argument 17 has type 'suseconds_t'
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
---
fs/ocfs2/cluster/netdebug.c | 26 +++++++++++++-------------
1 files changed, 13 insertions(+), 13 deletions...
| Aug 5, 4:50 pm 2008 |
| Joel Becker | Re: [PATCH] ocfs2/cluster/netdebug.c: fix warning
Yup.
Joel
--
"You can get more with a kind word and a gun than you can with
a kind word alone."
- Al Capone
Joel Becker
Principal Software Developer
Oracle
E-mail: joel.becker@oracle.com
Phone: (650) 506-8127
--
| Aug 5, 7:22 pm 2008 |
| Alexander Beregalov | [PATCH] netxen_nic_hw.c: fix warnings
From: Alexander Beregalov <a.beregalov@gmail.com>
netxen_nic_hw.c: fix warnings
drivers/net/netxen/netxen_nic_hw.c:1414: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'u64'
drivers/net/netxen/netxen_nic_hw.c:1487: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'u64'
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
---
drivers/net/netxen/netxen_nic_hw.c | 6 ++++--
1 files changed, 4 inse...
| Aug 5, 4:05 pm 2008 |
| Adrian Bunk | [2.6 patch] feature-removal-schedule.txt: remove the NCR53C9...
Now that the driver is removed we should also remove the entry in
Documentation/feature-removal-schedule.txt
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Christoph Hellwig <hch@lst.de>
---
This patch has been sent on:
- 1 Mar 2008
6d7882f6e844eaf6551b3a3708e01d1784916435 foobar
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt
index c1d1fd0..a4530f0 100644
--- a/Documentation/feature-removal-schedule.txt
+++ b/Docum...
| Aug 5, 4:03 pm 2008 |
| Christoph Hellwig | Re: [2.6 patch] feature-removal-schedule.txt: remove the NCR...
This should really be easy enough for any merge window state, whoe wants
to feed it to Linus?
---end quoted text---
--
| Aug 5, 7:37 pm 2008 |
| Andrew Morton | Re: [2.6 patch] feature-removal-schedule.txt: remove the NCR...
I have it queued for my next Linuswards batch. I tend to push
non-code-related changes immediately.
--
| Aug 5, 7:51 pm 2008 |
| Nye Liu | [PATCH] INITRAMFS: Add option to preserve mtime from INITRAM...
From: Nye Liu <nyet@nyet.org>
When unpacking the cpio into the initramfs, mtimes are not preserved by
default. This patch adds an INITRAMFS_PRESERVE_MTIME option that allows
mtimes stored in the cpio image to be used when constructing the
initramfs. For embedded applications that run exclusively out of the
initramfs, this is invaluable.
Signed-off-by: Nye Liu <nyet@nyet.org>
---
diff --git a/init/initramfs.c b/init/initramfs.c
index 644fc01..0dd0a73 100644
--- a/init/initramfs....
| Aug 5, 3:52 pm 2008 |
| Simon Arlott | forcedeth 10de:0373 doesn't work on resume
My NIC stops working after resuming from standby, it's not receiving any interrupts:
[ 0.618266] pci 0000:00:08.0: supports D1
[ 0.618267] pci 0000:00:08.0: supports D2
[ 0.618269] pci 0000:00:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.618382] pci 0000:00:08.0: PME# disabled
[ 0.618513] pci 0000:00:09.0: supports D1
[ 0.618523] pci 0000:00:09.0: supports D2
[ 0.618532] pci 0000:00:09.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.618632] pci 0000:00:09.0: PME# disa...
| Aug 5, 3:29 pm 2008 |
| Michael Kerrisk | man-pages-3.06 is released
Gidday
I've released man-pages-3.06.
This release is now available for download at:
http://www.kernel.org/pub/linux/docs/man-pages
or ftp://ftp.kernel.org/pub/linux/docs/man-pages
The online changelog is available at
http://www.kernel.org/doc/man-pages/changelog.html
(blogged at
http://linux-man-pages.blogspot.com/2008/08/man-pages-306-is-released.html)
and the current version of the pages is browsable at
http://www.kernel.org/doc/man-pages/
The changes in this release consist...
| Aug 5, 3:20 pm 2008 |
| Mathieu Desnoyers | LTTng git repository on git.kernel.org
Hi,
I just populated the linux-2.6-lttng.git repository on git.kernel.org
with my current LTTng release.
git://git.kernel.org/pub/scm/linux/kernel/git/compudj/linux-2.6-lttng.git
http://www.kernel.org/pub/scm/linux/kernel/git/compudj/linux-2.6-lttng.git
The matching tarball can be found at
http://www.kernel.org/pub/linux/kernel/people/compudj/patches/2.6/2.6.26.1/
Please refer to the "Compatibility list" and the "QUICKSTART GUIDE" on
http://ltt.polymtl.ca to see which userland packages you n...
| Aug 5, 3:17 pm 2008 |
| Robert P. J. Day | [PATCH] SOUND: Remove references to dead sound/oss vars AEDS...
Remove the Kconfig definitions of unused variables AEDSP16_MSS and
AEDSP16_SBPRO since they're:
1) unused, and
2) referenced incorrectly anyway.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
---
while the sound/oss/Kconfig file defines the variables as
AEDSP16_MSS and AEDSP16_SBPRO, they're (apparently) referenced thusly
in aedsp16.c:
#if defined(CONFIG_SOUND_AEDSP16_SBPRO) && defined(CONFIG_SOUND_AEDSP16_MSS)
#error You have to enable only one of the MSS and ...
| Aug 5, 2:50 pm 2008 |
| Dean Hildebrand | Re: PCI: Limit VPD length for Broadcom 5708S
It seems that our IBM Blade servers using 5706S also require this
fix. We have confirmed that the patch below works on 2.6.27-rc1.
diff -uprN linux-2.6.27-rc1/drivers/pci/quirks.c
linux-2.6.27-rc1-fix/drivers/pci/quirks.c
--- linux-2.6.27-rc1/drivers/pci/quirks.c 2008-08-05
10:51:42.000000000 -0700
+++ linux-2.6.27-rc1-fix/drivers/pci/quirks.c 2008-08-05
10:50:57.000000000 -0700
@@ -1756,9 +1756,10 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_VI
*/
static void __devinit quirk_br...
| Aug 5, 2:49 pm 2008 |
| Michael Madore | task blocked for more than 120 seconds (2.6.26.1)
Hi,
Running 2.6.26.1 I am receiving errors similar to the following when
stress testing systems:
INFO: task kjournald:1004 blocked for more than 120 seconds.
"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
kjournald D ffff81013d347000 0 1004 2
ffff81013cce9de0 0000000000000046 ffff81013cce9d90 ffffffff810478c5
ffff810001069378 ffff81013cdd2cc0 ffff810120454320 ffff81013cdd3010
ffff81013cce9de0 ffffffff81048096 ffff81013cce9db0 0000000000000246
Call ...
| Aug 5, 2:47 pm 2008 |
| previous day | today | next day |
|---|---|---|
| August 4, 2008 | August 5, 2008 | August 6, 2008 |
