| From | Subject | Date |
|---|---|---|
| Chris Lesiak | [PATCH] spi subsystem: destroy the spi_bitbang workqueue onl...
From: Chris Lesiak <chris.lesiak@licor.com>
This patch fixes a bug in the cleanup of an spi_bitbang bus. The
workqueue associated with the bus was destroyed before the call to
spi_unregister_master. That meant that spi devices on that bus would be
unable to do IO in their remove method. The shutdown flag should have
been able to prevent a segfault, but was never getting set. By waiting
to destroy the workqueue until after the master is unregistered, devices
are able to do IO in their remo...
| Mar 7, 7:48 pm 2007 |
| Brian Walsh | [PATCH] include/asm-arm/arch-ixp4xx: Consolidate check_sign...
The check_signature function is now in linux/include/io.h. This platform
was missed in the previous consolidation.
Signed-off-by: Brian Walsh <brian@walsh.ws>
diff -ur a/include/asm-arm/arch-ixp4xx/io.h b/include/asm-arm/arch-ixp4xx/io.h
--- a/include/asm-arm/arch-ixp4xx/io.h 2007-03-07 14:59:47.000000000 -0500
+++ b/include/asm-arm/arch-ixp4xx/io.h 2007-03-07 14:58:54.000000000 -0500
@@ -238,23 +238,6 @@
#define memcpy_fromio(a,c,l) _memcpy_fromio((a),(c),(l))
#define memcpy_toio(c...
| Mar 7, 7:52 pm 2007 |
| Robert P. J. Day | [PATCH] Replace misspelled "PRINTK" with "CONFIG_PRINTK".
Replace the apparently misspelled preprocessor variable "PRINTK"
with "CONFIG_PRINTK".
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
---
not sure who the official maintainer here is, sorry.
diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c
index 5554ada..0c09772 100644
--- a/drivers/md/bitmap.c
+++ b/drivers/md/bitmap.c
@@ -53,7 +53,7 @@
//#define DPRINTK PRINTK /* set this NULL to avoid verbose debug output */
#define DPRINTK(x...) do { } while(0)
-#ifndef...
| Mar 7, 7:38 pm 2007 |
| Marc St-Jean | Re: [PATCH] drivers: PMC MSP71xx GPIO char driver
Thanks for the feedback Andrew. I've implemented all your recommendations
other than the kernel thread handling, which I still have to look into.
The reason is likely because it's only called by msp_gpio_init so it was
considered part of the module code. I'll move the comment to only cover
msp_gpio_init/exit.
These exports are needed for other drivers compiled as modules can control
the GPIO pins through this driver.
[...]
Marc
-
| Mar 7, 7:47 pm 2007 |
| Robert P. J. Day | [PATCH] MTD: Correct misspelled preprocessor variable "MTD_N...
Replace the apparently misspelled preprocessor variable
"MTD_NAND_DISKONCHIP_BBTWRITE" with the correct form
"CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE".
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
---
diff --git a/drivers/mtd/nand/diskonchip.c b/drivers/mtd/nand/diskonchip.c
index 12608c1..595208f 100644
--- a/drivers/mtd/nand/diskonchip.c
+++ b/drivers/mtd/nand/diskonchip.c
@@ -114,7 +114,7 @@ module_param(no_autopart, int, 0);
static int show_firmware_partition = 0;
mod...
| Mar 7, 7:33 pm 2007 |
| Robert P. J. Day | [PATCH] Fix erroneous "MODVERSIONS" with "CONFIG_MODVERSIONS".
Replace the apparently misspelled "MODVERSIONS" preprocessor
variable with "CONFIG_MODVERSIONS".
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
---
diff --git a/drivers/char/rocket.c b/drivers/char/rocket.c
index 76357c8..94473fc 100644
--- a/drivers/char/rocket.c
+++ b/drivers/char/rocket.c
@@ -65,7 +65,7 @@
/****** Kernel includes ******/
-#ifdef MODVERSIONS
+#ifdef CONFIG_MODVERSIONS
#include <config/modversions.h>
#endif
--
======================...
| Mar 7, 7:28 pm 2007 |
| Andrew Morton | Re: [PATCH] Fix erroneous "MODVERSIONS" with "CONFIG_MODVERS...
On Wed, 7 Mar 2007 18:28:48 -0500 (EST)
It was obviously all do-nothing code, so I deleted it.
-
| Mar 7, 7:55 pm 2007 |
| Marti Raudsepp | PROBLEM: 'bio too big device' after moving to a USB disk
Hello LKML,
PROBLEM: 'bio too big device' after moving to a USB disk
I. Summary
After lvmove'ing an LVM volume from a SATA disk to a USB disk, reiserfs starts
spewing I/O errors with "bio too big device dm-1 (256 > 240)" in dmesg; fsck
reports no corruptions, and problems only occur at certain lengths in
different files, such as 112k, 240k, 368k, and only with files that existed
before, and not newly written files. When copying the partition back to its
original disk, everything works agai...
| Mar 7, 7:24 pm 2007 |
| Chris Friesen | resend: KERNEL BUG: nice level should not affect SCHED_RR ti...
I still haven't seen any replies, so I'm resending with a few more
people directly in the TO list.
The timeslice of a SCHED_RR process currently varies with nice level the
same way that it does for SCHED_OTHER. I've included a small app below
that demonstrates the issue. So while niceness doesn't affect the
priority of a SCHED_RR task, it does impact how much cpu it gets
relative to other SCHED_RR tasks.
SUSv3 indicates, "Any processes or threads using SCHED_FIFO or SCHED_RR
shall be una...
| Mar 7, 7:19 pm 2007 |
| Dave Hansen | Re: 2.6.21-rc2-mm2 hang
I was confused that I couldn't find this fix in my patches directory,
but I double-checked, and realized that I was still on 2.6.21-rc2-mm1.
I must have grabbed the wrong broken-out tarball when I started the
bisect. Darn.
Anyway, 2.6.21-rc2-mm2 appears to be OK. Sorry for the false alarm.
-- Dave
-
| Mar 7, 7:07 pm 2007 |
| Andrew Morton | Re: 2.6.21-rc2-mm2 hang
On Wed, 07 Mar 2007 15:07:21 -0800
Ah, OK. I'll undrop those three patches.
Michal, did rc2-mm2 make that weird hang go away for you?
-
| Mar 7, 7:16 pm 2007 |
| Adrian Bunk | [2.6 patch] drivers/macintosh/mac_hid.c: make code static
This patch makes some needlessly global code static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
This patch was already sent on:
- 6 Feb 2007
drivers/macintosh/mac_hid.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
--- linux-2.6.20-rc6-mm3/drivers/macintosh/mac_hid.c.old 2007-02-06 07:38:21.000000000 +0100
+++ linux-2.6.20-rc6-mm3/drivers/macintosh/mac_hid.c 2007-02-06 07:39:14.000000000 +0100
@@ -24,7 +24,7 @@
#if defined(CONFIG_SYSCTL)
/* file(s) in...
| Mar 7, 6:41 pm 2007 |
| Adrian Bunk | [RFC: 2.6 patch] powerpc: remove the unused HTDMSOUND driver
Recently, someone fixed a syntax error in the HTDMSOUND driver
introduced 4 years ago.
Unfortunately not by trying to compile this driver for his hardware but
by code inspection - which seems to be a strong indication that there
are no users left for this OSS sound driver.
This patch therefore removes it.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
arch/ppc/8xx_io/Kconfig | 4
arch/ppc/8xx_io/Makefile | 1
arch/ppc/8xx_io/cs4218.h | 166 -
ar...
| Mar 7, 6:41 pm 2007 |
| Adrian Bunk | [RFC: net-2.6.20 patch] remove unused exports
This patch removes the following not or no longer used exports:
- drivers/char/random.c: secure_tcp_sequence_number
- net/dccp/options.c: sysctl_dccp_feat_sequence_window
- net/netlink/af_netlink.c: netlink_set_err
Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
This patch was already sent on:
- 21 Nov 2006
drivers/char/random.c | 2 --
net/dccp/options.c | 2 --
net/netlink/af_netlink.c | 1 -
3 files changed, 5 deletions(-)
--- linux-2.6.19-rc5-mm2/net/netlin...
| Mar 7, 6:40 pm 2007 |
| Matt Mackall | Re: [RFC: net-2.6.20 patch] remove unused exports
This part looks reasonable.
Acked-by: Matt Mackall <mpm@selenic.com>
--
Mathematics is the supreme nostalgia of our time.
-
| Mar 7, 6:36 pm 2007 |
| David Miller | Re: [RFC: net-2.6.20 patch] remove unused exports
From: Adrian Bunk <bunk@stusta.de>
Applied to net-2.6.22, thanks Adrian.
-
| Mar 7, 6:48 pm 2007 |
| Dmitry Torokhov | chrdev_open lifetime question
Hi,
It seems that if a process keeps a character device open then other
processes will also be able to get into filp->f_op->open(inode,filp)
in chrdev_open() even after a driver called cdev_del() as part of its
unwind procedure. Is this correct or am I missing something?
Thanks!
--
Dmitry
-
| Mar 7, 6:23 pm 2007 |
| Christoph Hellwig | Re: [PATCH] cifs: remove useless cargo-cult checks
There's a good reason you couldn't reproduce it, because it most likely
must have been a really bad hack in the submitters kernel. Setting
up file->f_dentry is one of the first thing we do after allocating the
I know - that patch just made the enormous amount of useless checks
polling -mm is a little hard as it's an enormous blob, so posting to
lkml or -fsdevel would definitively be quite helpfull.
-
| Mar 7, 6:17 pm 2007 |
| Randy Dunlap | Re: [PATCH] cifs: remove useless cargo-cult checks
BTW, this isn't just a cifs issue. There are way too many git trees
I prefer -fsdevel or any more focused list (let's not make lkml
a dumping ground for everything).
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
-
| Mar 7, 6:27 pm 2007 |
| Mockern | blocking read in tty driver
Hi,
how to make blocking read in tty driver?
thanks
-
| Mar 7, 6:07 pm 2007 |
| Pat Gefre | [PATCH] 2.6 Altix : console fix for CONFIG_DEBUG_SHIRQ usage
The sn console driver was snagged by the use of CONFIG_DEBUG_SHIRQ !
The request_irq() immediate call to the interrupt handler caused
another attempt to lock the port lock - deadlock.
This is a patch to fix that.
Signed-off-by: Patrick Gefre <pfg@sgi.com>
sn_console.c | 52 +++++++++++++++++-----------------------------------
1 file changed, 17 insertions(+), 35 deletions(-)
Index: linux-2.6/drivers/serial/sn_console.c
========================================================...
| Mar 7, 5:57 pm 2007 |
| Andrew Morton | Re: [PATCH] 2.6 Altix : console fix for CONFIG_DEBUG_SHIRQ u...
On Wed, 7 Mar 2007 15:57:07 -0600 (CST)
Should this go into 2.6.20.x as well?
-
| Mar 7, 6:38 pm 2007 |
| Mel Gorman | [PATCH] 2.6.21-rc2-mm2 Fix boot problem on IA64 with CONFIG_...
Usually, a mem_map is aligned on MAX_ORDER_NR_PAGES boundaries and the
struct pages are always valid. However, this is not always the case when
CONFIG_HOLES_IN_ZONE is set.
move_freepages_block() checks that pages within a MAX_ORDER_NR_PAGES block
are in the same zone using page_zone(). However, if an invalid page is
passed to page_zone(), it can result in breakage on machines requiring
CONFIG_HOLES_IN_ZONE. This patch avoids the use of page_zone() and instead
checks the PFNs against the PFN ranges...
| Mar 7, 5:13 pm 2007 |
| Dave Jiang | [PATCH] x86_64 RESTORE_CONTEXT missing '\n'
The RESTORE_CONTEXT macro is missing the '\n' at the end. It was removed in the
previous patch that touched system.h. It causes compile failure if any
inline asm is added after the macro. Discovered this when playing with
kgdb.
Signed-off-by: Dave Jiang <djiang@mvista.com>
---
include/asm-x86_64/system.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/include/asm-x86_64/system.h b/include/asm-x86_64/system.h
index bd376bc..cbb8579 100644
--- a/inclu...
| Mar 7, 4:45 pm 2007 |
| Chuck Ebbert | PS/2 mouse port missing with kernel >=2.6.19, Sis chipset
We have multiple reports of PS/2 mouse port not being found
on Sis 630 and 730 chipsets, starting with Fedora kernel 2.6.19:
2.6.18:
Jan 19 08:59:39 mtranch kernel: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M]
at 0x60,0x64 irq 1,12
Jan 19 08:59:39 mtranch kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jan 19 08:59:39 mtranch kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jan 19 08:59:39 mtranch kernel: mice: PS/2 mouse device common for all mice
2.6.19:
Jan 20 09:22:30 mtranch kernel: P...
| Mar 7, 4:03 pm 2007 |
| Dmitry Torokhov | Re: PS/2 mouse port missing with kernel >=2.6.19, Sis chipset
There were some issues with AUX IRQ delivery test that is part of AUX
port probe. They should be fixed in the latest mainline. You might be
inetrested in this commit:
1e4865f8d469b1...
--
Dmitry
-
| Mar 7, 4:15 pm 2007 |
| Andrew Morton | Re: mm snapshot broken-out-2007-03-05-02-22.tar.gz uploaded
OK. Can you please confirm that applying the below fixes 2.6.21-rc3?
If so, I'll queue it up for application in a week or two if there is no
progress on this.
From: Andrew Morton <akpm@linux-foundation.org>
Revert 831466f4ad2b5fe23dff77edbe6a7c244435e973: "Michal Piotrowski"
<michal.k.k.piotrowski@gmail.com> reports that it broke his 3d surround.
Cc:"Michal Piotrowski" <michal.k.k.piotrowski@gmail.com>
Cc: Randy Cushman <rcushman_linux@earthlink.net>
Cc: Taka...
| Mar 7, 3:50 pm 2007 |
| Michal Piotrowski | Re: mm snapshot broken-out-2007-03-05-02-22.tar.gz uploaded
Regards,
Michal
--
Michal K. K. Piotrowski
LTG - Linux Testers Group (PL)
(http://www.stardust.webpages.pl/ltg/)
LTG - Linux Testers Group (EN)
(http://www.stardust.webpages.pl/linux_testers_group_en/)
-
| Mar 7, 6:16 pm 2007 |
| Takashi Iwai | Re: mm snapshot broken-out-2007-03-05-02-22.tar.gz uploaded
At Wed, 7 Mar 2007 11:50:24 -0800,
[sorry for the late interrupt - I'm just back from a vacation]
Could you postpone reverting for a while?
I guess this possible regression is limited only to a certain type of
ac97 codec chip. The patch applied there was a fix for many codec
chips.
Which codec chip are you using specifically? Please check
/proc/asound/card0/codec97#0/* file(s).
Also, run "alsactl -f somefile store" and attach the generated file to
see whether any mixer status inconsistency ...
| Mar 7, 4:39 pm 2007 |
| Michal Piotrowski | Re: mm snapshot broken-out-2007-03-05-02-22.tar.gz uploaded
Hi Takashi,
0-0/0: Analog Devices AD1985
PCI Subsys Vendor: 0x1043
PCI Subsys Device: 0x80f3
Revision : 0x03
Compat. Class : 0x00
Subsys. Vendor ID: 0xffff
Subsys. ID : 0xffff
Capabilities : -headphone out-
DAC resolution : 20-bit
ADC resolution : 16-bit
3D enhancement : No 3D Stereo Enhancement
Current setup
Mic gain : +20dB [+20dB]
POP path : pre 3D
Sim. stereo : off
3D enhancement : off
Loudness : off
Mono output ...
| Mar 7, 6:22 pm 2007 |
| Takashi Iwai | Re: mm snapshot broken-out-2007-03-05-02-22.tar.gz uploaded
At Wed, 07 Mar 2007 23:22:36 +0100,
So, you're playing two-channel samples and get no output from surround
and CLFE? Or, does it happen if you play a real 5.1 channel file?
(for example, try speaker-test -c6)
Also, it'd be helpful if you compare
/proc/asound/card0/codec97#0/ac97#0-0+regs file before and after the
patch. This reveals which register bits differ actually.
thanks,
Takashi
-
| Mar 7, 6:44 pm 2007 |
| Mws | irq nobody cared issue on 2.6.2x
hi all,
i just moved my win tv dvb-s card (PCI) from my old to my actual pc.
its an ASUS M2N32 WS Professional AMD64 X2 Board equiped with
the nvidia nForce 590 SLI MCP chipset.
in the past, i had to use the noapic kernel cmdline param to get linux
booting and working properly.
iirc versions >=2.6.18 of the kernel fixed all of my previous problems,
thus i am not using noapic since then.
if you would be so kind to provide me some infos,
how i would be able to track the problem down _a...
| Mar 7, 3:48 pm 2007 |
| Linus Torvalds | Re: irq nobody cared issue on 2.6.2x
The first step is to figure out as exactly as possible _when_ it started
So is 2.6.19 good? 2.6.20-rc1? -rc2?
If you're a git user (or even just marginally interested in learning), the
best thing to do is to find some good kernel (the more recent, the better,
but the keyword is *some* kernel that works well), and a bad kernel (the
older the better, just to avoid unnecessary work, but again, you can just
take the most recent too), and then just use "git bisect".
If you bisect it down ...
| Mar 7, 4:09 pm 2007 |
| Mark Lord | regression: SATA dead after resume from RAM 2.6.21-rc3
Mmm.. like others, I've now been bitten by what looks like
a SATA failure on resume from RAM, with 2.6.21-rc3.
I don't have enough info to blame this specific -rc* kernel,
as it has only done it once to me so far.
So, a datapoint, but not much of clue beyond that.
Unless it happens again.
Yes, the GUI did come back from suspend, but the disk
(ICH6M) did not seem want to talk to anything afterwards,
and the system hung on a manual "alt-sysrq-Sync".
I waited only about a minute or so before reb...
| Mar 7, 3:44 pm 2007 |
| Rafael J. Wysocki | [PATCH] swsusp: Disable nonboot CPUs before entering platfor...
From: Rafael J. Wysocki <rjw@sisk.pl>
Prevent the WARN_ON() in arch/x86_64/kernel/acpi/sleep.c:init_low_mapping()
from triggering by disabling nonboot CPUs before we finally enter the platform
suspend.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
kernel/power/disk.c | 1 +
kernel/power/user.c | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
Index: linux-2.6.21-rc2-mm2/kernel/power/disk.c
===================================================================
--- ...
| Mar 7, 3:44 pm 2007 |
| Pavel Machek | Re: [PATCH] swsusp: Disable nonboot CPUs before entering pla...
...so, if pm_ops is non-null, power_down does nonboot cpu disabling,
otherwise we proceed with cpus enabled?
That looks ugly.
Is the warning bogus? Or maybe we should *always* disable nonboot cpus
Foe an userland application, disabling cpus during pmops_enter is at
least surprising.......
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
-
| Mar 7, 5:07 pm 2007 |
| Andrew Morton | Re: [PATCH] swsusp: Disable nonboot CPUs before entering pla...
On Wed, 7 Mar 2007 20:44:11 +0100
Is this considered 2.6.21 material? If so why?
Thanks.
-
| Mar 7, 5:16 pm 2007 |
| Rafael J. Wysocki | Re: [PATCH] swsusp: Disable nonboot CPUs before entering pla...
Well, the WARN_ON() in arch/x86_64/kernel/acpi/sleep.c:init_low_mapping()
triggers every time an SMP x86_64 box is suspended to disk using the platform
mode (default), which is quite annoying IMHO and users think something wrong is
going on. This will probably cause them to report the problem and I'd rather
like to avoid handling these reports. ;-)
-
| Mar 7, 6:14 pm 2007 |
| Pavel Machek | Re: [PATCH] swsusp: Disable nonboot CPUs before entering pla...
I do not quite like the patch (explanation in separate mail). Can we
remove the WARN_ON() ? ;-).
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
-
| Mar 7, 6:19 pm 2007 |
| Rafael J. Wysocki | Re: [PATCH] swsusp: Disable nonboot CPUs before entering pla...
Yes, if you can tell me why it's there. :-)
Rafael
-
| Mar 7, 7:14 pm 2007 |
| Andrew Morton | Re: [PATCH] swsusp: Disable nonboot CPUs before entering pla...
On Wed, 7 Mar 2007 23:14:29 +0100
Well sure - if patches were always error-free, we'd always apply them
immediately.
The question is: is the risk of this patch breaking things exceeded by the
benefit which you describe?
-
| Mar 7, 6:49 pm 2007 |
| Rafael J. Wysocki | Re: [PATCH] swsusp: Disable nonboot CPUs before entering pla...
Well, it has survived some testing (http://lkml.org/lkml/2007/3/7/16). Also,
before the code ordering in 2.6.21-rc* we had been running on one CPU
here, so I think the risk is small.
We could remove the WARN_ON() as Pavel has just suggested, but first I'd like
to know who put it there and why.
-
| Mar 7, 7:13 pm 2007 |
| Michael K. Edwards | f_owner.lock and file->pos updates
Suppose I want to create an atomic llseek+writev operation. Is this
more or less sufficient:
ssize_t ret = -EBADF;
file = fget_light(fd, &fput_needed);
if (file) {
if (unlikely(origin > 2)) {
ret = -EINVAL;
} else {
write_lock_irq(&file->f_owner.lock);
pos = vfs_llseek(file, ((loff_t) offset_high <<
32) | offset_low, origin);
ret = (ssize_t)pos;
...
| Mar 7, 3:17 pm 2007 |
| Jeff Dike | [PATCH] UML - arch_prctl should set thread fs
[ Andrew, this is definite 2.6.21 material ]
In my previous x86_64 thread fix, I forgot to initialize
thread.arch.fs in arch_prctl. A process calling arch_prctl to set %fs
would lose it on the next context switch.
It also turns out that you can switch to a process which is in the
process of exiting and which has lost its mm. In this case, it's
worse than useless to try to call arch_prctl on the host process.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
--
arch/um/sys-x86_64/sysca...
| Mar 7, 3:01 pm 2007 |
| Miles Lane | 2.6.21-rc2-mm2 -- hot-fix "revert-optimize-and-simplify-get_...
In file included from include/asm/timex.h:10,
from include/linux/timex.h:187,
from include/linux/sched.h:50,
from include/linux/utsname.h:35,
from include/asm/elf.h:12,
from include/linux/elf.h:7,
from include/linux/module.h:15,
from include/linux/crypto.h:21,
from arch/i386/kernel/asm-offsets.c:7:
include/asm/tsc.h: In function 'get_cycles_sync':
include/asm/tsc....
| Mar 7, 3:01 pm 2007 |
| Andrew Morton | Re: 2.6.21-rc2-mm2 -- hot-fix "revert-optimize-and-simplify-...
Yes, I ended up dropping another patch to fix that up and things got in a
mess.
Andy's patch should fix it up again
From: Andy Whitcroft <apw@shadowen.org>
Add an i386 implementation of alternative_io modelled on
the x86_64 version.
Signed-off-by: Andy Whitcroft <apw@shadowen.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
include/asm-i386/alternative.h | 17 +++++++++++++++++
include/asm-i386/tsc.h | 1 +
2 files changed, 18 inserti...
| Mar 7, 3:37 pm 2007 |
| Mockern | blocking read in tty driver
Hi,
how to make blocking read in tty driver?
thanks
-
| Mar 7, 2:11 pm 2007 |
| Greg KH | [patch 011/101] AGP: intel-agp bugfix
From: Dave Jones <davej@redhat.com>
On Sun, Feb 04, 2007 at 04:51:38PM +0100, Eric Piel wrote:
> Hello,
>
> I've got a regression in 2.6.20-rc7 (-rc6 was fine) due to commit
> 4b95320fc4d21b0ff2f8604305dd6c851aff6096 ([AGPGART] intel_agp: restore
> graphics device's pci space early in resume).
I think the key to this failure is the last line here ..
> agpgart-intel 0000:00:00.0: resuming
> PM: Writing back config space on device 0000:00:02.0 at offset f (w...
| Mar 7, 1:10 pm 2007 |
| Greg KH | [patch 009/101] bcm43xx: Fix for oops on resume
There is a kernel oops on bcm43xx when resuming due to an overly tight timeout loop.
Signed-off-by: Larry Finger<Larry.Finger@lwfinger.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
drivers/net/wireless/bcm43xx/bcm43xx.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- linux-2.6.20.1.orig/drivers/net/wireless/bcm43xx/bcm43xx.h
+++ linux-2.6.20.1/drivers/net/wireless/bcm43xx/bcm43xx.h
@@ -21,7 +21,7 @@
#define PFX KBUILD_MODNAME ": "
#define BCM...
| Mar 7, 1:10 pm 2007 |
| Greg KH | [patch 007/101] Keys: Fix key serial number collision handling
From: David Howells <dhowells@redhat.com>
[PATCH] Keys: Fix key serial number collision handling
Fix the key serial number collision avoidance code in key_alloc_serial().
This didn't use to be so much of a problem as the key serial numbers were
allocated from a simple incremental counter, and it would have to go through
two billion keys before it could possibly encounter a collision. However, now
that random numbers are used instead, collisions are much more likely.
This is fixed by fi...
| Mar 7, 1:10 pm 2007 |
| previous day | today | next day |
|---|---|---|
| March 6, 2007 | March 7, 2007 | March 8, 2007 |
| Greg KH | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Greg Kroah-Hartman | [PATCH 005/196] Chinese: add translation of SubmittingDrivers |
| Adrian Bunk | [1/6] 2.6.21-rc2: known regressions |
| Paul Jackson | Re: cpuset-remove-sched-domain-hooks-from-cpusets |
git: | |
| Linus Torvalds | Re: [GIT]: Networking |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| Jarek Poplawski | [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Andrew Morton | Re: [BUG] New Kernel Bugs |
