| From | Subject | Date |
|---|---|---|
| Glenn Griffin | [PATCH] Add IPv6 support to TCP SYN cookies
Here is a reworked implementation that restricts the code to the ipv6 module as
Andi suggested. Uses the same CONFIG and sysctl variables as the ipv4
implementation.
Signed-off-by: Glenn Griffin <ggriffin.kernel@gmail.com>
---
include/net/tcp.h | 6 +
net/ipv6/Makefile | 1 +
net/ipv6/syncookies.c | 273 +++++++++++++++++++++++++++++++++++++++++++++++++
net/ipv6/tcp_ipv6.c | 77 ++++++++++----
4 files changed, 335 insertions(+), 22 deletions(-)
create mode 100644 net/...
| Feb 4, 7:01 pm 2008 |
| Ayaz Abdulla | Re: [patch 2/4] forcedeth: fix MAC address detection on netw...
I believe Michael determined that a newer BIOS fixes this issue.
-----------------------------------------------------------------------------------
This email message is for the sole use of the intended recipient(s) and may contain
confidential information. Any unauthorized review, use, disclosure or distribution
is prohibited. If you are not the intended recipient, please contact the sender by
reply email and destroy all copies of the original message.
-------------------------------------...
| Feb 4, 1:33 pm 2008 |
| Ayaz Abdulla | Re: [patch 2/4] forcedeth: fix MAC address detection on netw...
Michael, can you provide which BIOS version had this issue and which
version fixed the issue?
-----------------------------------------------------------------------------------
This email message is for the sole use of the intended recipient(s) and may contain
confidential information. Any unauthorized review, use, disclosure or distribution
is prohibited. If you are not the intended recipient, please contact the sender by
reply email and destroy all copies of the original message.
--...
| Feb 4, 1:57 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH] ppc: fix #ifdef-s in mediabay driver (take 2)
* Replace incorrect CONFIG_BLK_DEV_IDE #ifdef in
check_media_bay() by CONFIG_MAC_FLOPPY one.
* Replace incorrect CONFIG_BLK_DEV_IDE #ifdef-s by
CONFIG_BLK_DEV_IDE_PMAC ones.
* check_media_bay() is used only by drivers/block/swim3.c
so make this function available only if CONFIG_MAC_FLOPPY
is defined.
* check_media_bay_by_base() and media_bay_set_ide_infos()
are used only by drivers/ide/ppc/pmac.c so so make these
functions available only if CONFIG_MAC_FLOPPY is defined.
v2:
...
| Feb 4, 3:47 pm 2008 |
| Pavel Machek | Timer cleanups
Add anotations, so that timertop produces nicer results. Relative
expiry time can get negative, so it should be signed.
Signed-off-by: Pavel Machek <Pavel@suse.cz>
diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c
index 429d084..235fd6c 100644
--- a/arch/x86/kernel/hpet.c
+++ b/arch/x86/kernel/hpet.c
@@ -368,8 +368,8 @@ static int hpet_clocksource_register(voi
return 0;
}
-/*
- * Try to setup the HPET timer
+/**
+ * hpet_enable - Try to setup the HPET timer. Retur...
| Feb 4, 7:48 pm 2008 |
| Pavel Machek | Small pm documentation cleanups
Small documentation fixes/additions that accumulated in my tree.
Signed-off-by: Pavel Machek <pavel@suse.cz>
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index cf38689..3be3328 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -147,8 +147,10 @@ and is between 256 and 4096 characters.
default: 0
acpi_sleep= [HW,ACPI] Sleep options
- Format: { s3_bios, s3_mode }
- See Documentation/power/v...
| Feb 4, 7:47 pm 2008 |
| Pavel Machek | CodingStyle: provide good example
if (!buffer) is actually prefered style, so lets use it in example.
Pavel
Signed-off-by: Pavel Machek <pavel@suse.cz>
diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle
index 6caa146..9bb2d8a 100644
--- a/Documentation/CodingStyle
+++ b/Documentation/CodingStyle
@@ -406,7 +415,7 @@ int fun(int a)
int result = 0;
char *buffer = kmalloc(SIZE);
- if (buffer == NULL)
+ if (!buffer)
return -ENOMEM;
if (condition1) {
--
(english) [ message continues ] " title="http://www.live...">http://www.live... | Feb 4, 7:43 pm 2008 |
| Andrew Morton | Re: CodingStyle: provide good example
On Tue, 5 Feb 2008 00:43:43 +0100
I tend to avoid preferring one over the other unless the extra seven
columns is needed to prevent wraparound nasties.
--
| Feb 4, 7:51 pm 2008 |
| Max Krasnyanskiy | CPU hotplug and IRQ affinity with 2.6.24-rt1
This is just an FYI. As part of the "Isolated CPU extensions" thread Daniel suggest for me
to check out latest RT kernels. So I did or at least tried to and immediately spotted a couple
of issues.
The machine I'm running it on is:
HP xw9300, Dual Opteron, NUMA
It looks like with -rt kernel IRQ affinity masks are ignored on that system. ie I write 1 to
lets say /proc/irq/23/smp_affinity but the interrupts keep coming to CPU1.
Vanilla 2.6.24 does not have that issue.
Also the first thing I tr...
| Feb 4, 7:35 pm 2008 |
| Glenn Griffin | [PATCH] Add IPv6 support to TCP SYN cookies
Add IPv6 support to TCP SYN cookies. This is written and tested against
2.6.24, and applies cleanly to linus' current HEAD (d2fc0b). Unfortunately
linus' HEAD breaks my sky2 card at the moment, so I'm unable to test against
that. I see no reason why it would be affected though. Comments/suggestions
are welcome.
Signed-off-by: Glenn Griffin <ggriffin.kernel@gmail.com>
---
include/net/tcp.h | 4 +
net/ipv4/syncookies.c | 203 ++++++++++++++++++++++++++++++++++++++++++++++++-
net/...
| Feb 4, 7:01 pm 2008 |
| Roel Kluin | [PATCH][drivers/scsi/u14-34f.c] duplicate test 'SCpnt->sc...
It should be like this I guess? this patch was not yet tested, please
confirm.
--
Note the duplicate test 'SCpnt->sc_data_direction == DMA_FROM_DEVICE'
from Documentation/DMA-API.txt:
DMA_TO_DEVICE = PCI_DMA_TODEVICE data is going from the
memory to the device
DMA_FROM_DEVICE = PCI_DMA_FROMDEVICE data is coming from
the device to the
Signed-off-by: Roel Kluin <12o3l@tiscali.nl...
| Feb 4, 6:36 pm 2008 |
| Roel kluin | [PATCH][drivers/misc/thinkpad_acpi.c] duplicate test 'if (le...
in drivers/misc/thinkpad_acpi.c, lines 4137-4142 it reads:
/* safety net should the EC not support AUTO
* or FULLSPEED mode bits and just ignore them */
if (level & TP_EC_FAN_FULLSPEED)
level |= 7; /* safety min speed 7 */
else if (level & TP_EC_FAN_FULLSPEED)
level |= 4; /* safety min speed 4 */
note the nonsense duplicate test 'if (level & TP_EC_FAN_FULLSPEED)'.
...
| Feb 4, 5:59 pm 2008 |
| Roel Kluin | [drivers/scsi/NCR53C9x.c] remove duplication for family_code...
in drivers/scsi/NCR53C9x.c:412-422 it reads:
else if(family_code == 0x00) {
if ((version & 7) == 2)
esp->erev = fas100a; /* NCR53C9X */
else
esp->erev = espunknown;
} else if(family_code == 0x14) {
if ((version & 7) == 2)
esp->erev = fsc;
else
...
| Feb 4, 6:22 pm 2008 |
| Roel Kluin | [drivers/misc/thinkpad_acpi.c] duplicate test if (level &...
in drivers/misc/thinkpad_acpi.c: 4137-4142 it reads:
/* safety net should the EC not support AUTO
* or FULLSPEED mode bits and just ignore them */
if (level & TP_EC_FAN_FULLSPEED)
level |= 7; /* safety min speed 7 */
else if (level & TP_EC_FAN_FULLSPEED)
level |= 4; /* safety min speed 4 */
Note the duplicate test 'if (level & TP_EC_FAN_FULLSPEED)'. should
this be ...
| Feb 4, 6:07 pm 2008 |
| Roland Dreier | Re: [drivers/misc/thinkpad_acpi.c] duplicate test if (level ...
> /* safety net should the EC not support AUTO
> * or FULLSPEED mode bits and just ignore them */
> if (level & TP_EC_FAN_FULLSPEED)
> level |= 7; /* safety min speed 7 */
> else if (level & TP_EC_FAN_FULLSPEED)
> level |= 4; /* safety min speed 4 */
>
> Note the duplicate test 'if (level & TP_EC_FAN_FULLSPEED)'. should
> this be re...
| Feb 4, 6:13 pm 2008 |
| Roel Kluin | [PATCH][drivers/misc/thinkpad_acpi.c] duplicate test if (lev...
Thanks Roland, for your info
based on the comments in commit eaa7571b2d1a08873e4bdd8e6db3431df61cd9ad,
I think this should be modified like below:
ACPI: thinkpad-acpi: add a safety net for TPEC fan control mode
The Linux ThinkPad community is not positive that all ThinkPads that do
HFSP EC fan control do implement full-speed and auto modes, some of the
earlier ones supporting HFSP might not.
If the EC ignores the AUTO or FULL-SPEED bits, it will pay attention to the
lower three bits that set...
| Feb 4, 7:24 pm 2008 |
| Gregor Radtke | pata_cs5536 hangs on boot with hdd attached
--=-Gf+l7GLQkygQGNdWrZqr
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Hi all,
there is some serious problem with pata_cs5536 in linux 2.6.24 - it does
not boot on ALIX.1B and ALIX.2C2 with hdd attached (as slave) to ide
port.
the ALIX.* are a series of single board computers, manufactured by PC
Engines in switzerland. Systems are based on AMD Geode LX, which itself
utilizes a CS5536 for IDE. ALIX.1B/1C use Award BIOS, while ALIX.2C2 and
other use tinyBIOS. See http:...
| Feb 4, 5:00 pm 2008 |
| Peter Zijlstra | [PATCH 4/8] sched: rt-group: make rt groups scheduling confi...
Make the rt group scheduler compile time configurable.
Enable it by default for cgroup scheduling.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
include/linux/cgroup_subsys.h | 2
init/Kconfig | 23 +++++--
kernel/sched.c | 130 +++++++++++++++++++++++++++++++-----------
kernel/sched_rt.c | 12 +--
4 files changed, 120 insertions(+), 47 deletions(-)
Index: linux-2.6/include/linux/cgroup_subsys.h
=========================...
| Feb 4, 5:03 pm 2008 |
| Peter Zijlstra | [PATCH 6/8] sched: rt-group: refure unrunnable tasks
Refuse to accept or create RT tasks in groups that can't run them.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
kernel/sched.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
Index: linux-2.6/kernel/sched.c
===================================================================
--- linux-2.6.orig/kernel/sched.c
+++ linux-2.6/kernel/sched.c
@@ -4588,6 +4588,15 @@ recheck:
return -EPERM;
}
+#ifdef CONFIG_RT_GROUP_SCHED
+ /*
+ * Do not allow realtime tasks ...
| Feb 4, 5:03 pm 2008 |
| Peter Zijlstra | [PATCH 7/8] sched: rt-group: synchonised bandwidth period
Various SMP balancing algorithms require that the bandwidth period
run in sync.
Possible improvements are moving the rt_bandwidth thing into root_domain
and keeping a span per rt_bandwidth which marks throttled cpus.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
include/linux/sched.h | 7 +
kernel/sched.c | 263 +++++++++++++++++++++++++++++++++++++----------
kernel/sched_rt.c | 104 ++++++++++++------
kernel/sysctl.c | 4
kernel/time/t...
| Feb 4, 5:03 pm 2008 |
| Peter Zijlstra | [PATCH 5/8] sched: rt-group: clean up the ifdeffery
Clean up some of the excessive ifdeffery introduces in the last patch.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
kernel/sched.c | 150 ++++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 100 insertions(+), 50 deletions(-)
Index: linux-2.6/kernel/sched.c
===================================================================
--- linux-2.6.orig/kernel/sched.c
+++ linux-2.6/kernel/sched.c
@@ -7563,56 +7563,29 @@ static int load_balance_monitor(void *un
...
| Feb 4, 5:03 pm 2008 |
| Peter Zijlstra | [PATCH 1/8] sched: fix incorrect irq lock usage in normalize...
lockdep spotted this bogus irq locking. normalize_rt_tasks() can be called
from hardirq context through sysrq-n
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
kernel/sched.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
Index: linux-2.6/kernel/sched.c
===================================================================
--- linux-2.6.orig/kernel/sched.c
+++ linux-2.6/kernel/sched.c
@@ -7345,7 +7345,7 @@ void normalize_rt_tasks(void)
unsigned long flags;...
| Feb 4, 5:02 pm 2008 |
| Peter Zijlstra | [PATCH 3/8] sched: rt-group: interface
Change the rt_ratio interface to rt_runtime_us, to match rt_period_us.
This avoids picking a granularity for the ratio.
Extend the /sys/kernel/uids/<uid>/ interface to allow setting
the group's rt_runtime.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
Documentation/ABI/testing/sysfs-kernel-uids | 6 +
Documentation/sched-rt-group.txt | 59 +++++++++++
include/linux/sched.h | 7 -
kernel/sched.c | 14...
| Feb 4, 5:03 pm 2008 |
| Peter Zijlstra | [PATCH 2/8] sched: rt-group: deal with PI
Steven mentioned the fun case where a lock holding task will be throttled.
Simple fix: allow groups that have boosted tasks to run anyway.
If a runnable task in a throttled group gets boosted the dequeue/enqueue
done by rt_mutex_setprio() is enough to unthrottle the group.
This is ofcourse not quite correct. Two possible ways forward are:
- second prio array for boosted tasks
- boost to a prio ceiling (this would also work for deadline scheduling)
Signed-off-by: Peter Zijlstra <a.p.zij...
| Feb 4, 5:03 pm 2008 |
| Peter Zijlstra | [PATCH 8/8] sched: rt-group: smp balancing
Currently the rt group scheduling does a per cpu runtime limit, however
the rt load balancer makes no guarantees about an equal spread of real-
time tasks, just that at any one time, the highest priority tasks run.
Solve this by making the runtime limit a global property by borrowing
excessive runtime from the other cpus once the local limit runs out.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
kernel/sched.c | 38 ++++++++++++++++++++++-
kernel/sched_rt.c | 88 +++++...
| Feb 4, 5:03 pm 2008 |
| Roel Kluin | [PATCH][sound/soc/fsl/mpc8610_hpcd.c] duplicate strcasecmp t...
In linus' git tree I found this problem. Is it also in the alsa tree?
please confirm it's the right fix. The patch was not yet tested.
--
duplicate test for "rj-master"
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
---
diff --git a/sound/soc/fsl/mpc8610_hpcd.c b/sound/soc/fsl/mpc8610_hpcd.c
index f26c4b2..a00aac7 100644
--- a/sound/soc/fsl/mpc8610_hpcd.c
+++ b/sound/soc/fsl/mpc8610_hpcd.c
@@ -314,9 +314,9 @@ static int mpc8610_hpcd_probe(struct of_device *ofdev,
} else if (strcasecmp(spr...
| Feb 4, 5:08 pm 2008 |
| Mark Brown | Feb 4, 7:11 pm 2008 | |
| Timur Tabi | Re: [alsa-devel] [PATCH][sound/soc/fsl/mpc8610_hpcd.c] dupli...
--
Timur Tabi
Linux kernel developer at Freescale
--
| Feb 4, 7:17 pm 2008 |
| Pavel Machek | small cleanups
These are small cleanups all over the tree. Please apply,
Signed-off-by: Pavel Machek <pavel@suse.cz>
diff --git a/fs/select.c b/fs/select.c
index 47f4792..c414aed 100644
--- a/fs/select.c
+++ b/fs/select.c
@@ -260,7 +260,7 @@ int do_select(int n, fd_set_bits *fds, s
wait = NULL;
if (retval || !*timeout || signal_pending(current))
break;
- if(table.error) {
+ if (table.error) {
retval = table.error;
break;
}
diff --git a/kernel/signal.c b/kernel/signal.c
inde...
| Feb 4, 5:00 pm 2008 |
| Jozsef Kadlecsik | Re: cups slow on linux-2.6.24
Hi,
I could reproduce the slow-down by a loop of socat commands. The dump you
sent looks exactly like the traces I got at dumping the traffic generated by
socat and that is good.
Actively closed connections are not handled properly, i.e. the initiator
of the active close should not be taken into account. So could you give a
try to the patch below? Does it just suppress the 'invalid packed ignored'
and all other kernel messages or both suppresses them and produces normal
printing speed?
...
| Feb 4, 4:17 pm 2008 |
| Dan Williams | [GIT PULL] async_tx update for 2.6.25
Linus, please pull from:
git://lost.foo-projects.org/~dwillia2/git/iop async-tx-for-linus
to receive:
Dan Williams (5):
async_tx: fix compile breakage, mark do_async_xor __always_inline
async_tx: kill ASYNC_TX_ASSUME_COHERENT
async_tx: kill tx_set_src and tx_set_dest methods
async_tx: replace 'int_en' with operation preparation flags
async_tx: allow architecture specific async_tx_find_channel implementations
Denis Cheng (2):
async_tx: use LIST_HEAD inst...
| Feb 4, 4:02 pm 2008 |
| Oliver Pinter | {2.6.22.y} CVE-2007-6434
mainline: ecaf18c15aac8bb9bed7b7aa0e382fe252e275d5
--->8---
commit ecaf18c15aac8bb9bed7b7aa0e382fe252e275d5
Author: Eric Paris <eparis@redhat.com>
Date: Tue Dec 4 23:45:31 2007 -0800
VM/Security: add security hook to do_brk
Given a specifically crafted binary do_brk() can be used to get low pages
available in userspace virtual memory and can thus be used to circumvent
the mmap_min_addr low memory protection. Add security checks in do_brk().
Signed-off-by: Eri...
| Feb 4, 4:13 pm 2008 |
| Chris Wright | Re: {2.6.22.y} CVE-2007-6434
All of the low mmap addr stuff isn't added until 2.6.23.
thanks,
-chris
--
| Feb 4, 5:34 pm 2008 |
| Oliver Pinter | Re: {2.6.22.y} CVE-2007-6434
ok, thanks
--
Thanks,
Oliver
--
| Feb 4, 5:36 pm 2008 |
| Oliver Pinter | Re: {2.6.22.y} CVE-2007-6434
sorry, drop this ..
/usr/data/source/oliver/build/linux-2.6.22.y-rcX-stable/mm/mmap.c: In
function 'do_brk':
/usr/data/source/oliver/build/linux-2.6.22.y-rcX-stable/mm/mmap.c:1889:
error: too many arguments to function 'security_file_mmap'
make[6]: *** [mm/mmap.o] Error 1
make[5]: *** [mm] Error 2
--
Thanks,
Oliver
--
| Feb 4, 5:02 pm 2008 |
| Greg KH | Re: {2.6.22.y} CVE-2007-6434
thanks,
greg k-h
--
| Feb 4, 5:38 pm 2008 |
| Oliver Pinter | Re: {2.6.22.y} CVE-2007-6434
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2007-6434
--
Thanks,
Oliver
--
| Feb 4, 4:14 pm 2008 |
| Christoph Lameter | [git pull] SLUB updates for 2.6.25
Updates for slub are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/christoph/vm.git slub-linus
Christoph Lameter (5):
SLUB: Fix sysfs refcounting
Move count_partial before kmem_cache_shrink
SLUB: rename defrag to remote_node_defrag_ratio
Add parameter to add_partial to avoid having two functions
Explain kmem_cache_cpu fields
Harvey Harrison (1):
slub: fix shadowed variable sparse warnings
Pekka Enberg (1):
SLU...
| Feb 4, 4:08 pm 2008 |
| Andrew Morton | Re: [git pull] SLUB updates for 2.6.25
On Mon, 4 Feb 2008 12:08:34 -0800 (PST)
err, what? I though I was going to merge these:
slub-move-count_partial.patch
slub-rename-numa-defrag_ratio-to-remote_node_defrag_ratio.patch
slub-consolidate-add_partial-and-add_partial_tail-to-one-function.patch
slub-use-non-atomic-bit-unlock.patch
slub-fix-coding-style-violations.patch
slub-noinline-some-functions-to-avoid-them-being-folded-into-alloc-free.patch
slub-move-kmem_cache_node-determination-into-add_full-and-add_partial.patch
slub-avoid-che...
| Feb 4, 6:28 pm 2008 |
| Andrew Morton | Re: [git pull] SLUB updates for 2.6.25
On Mon, 4 Feb 2008 14:28:45 -0800
erk, sorry, I misremembered. I was about to merge all the patches we
weren't going to merge. oops.
Linus, please proceed with this merge.
--
| Feb 4, 6:30 pm 2008 |
| Nick Piggin | Re: [git pull] SLUB updates for 2.6.25
While you're there, can you drop the patch(es?) I commented on
and didn't get an answer to. Like the ones that open code their
own locking primitives and do risky looking things with barriers
to boot...
Also, WRT this one:
slub-use-non-atomic-bit-unlock.patch
This is strange that it is unwanted. Avoiding atomic operations
is a pretty good idea. The fact that it appears to be slower on
some microbenchmark on some architecture IMO either means that
their __clear_bit_unlock or the CPU isn't impl...
| Feb 4, 7:10 pm 2008 |
| Christoph Lameter | Re: [git pull] SLUB updates for 2.6.25
That patch will be moved to a special archive for
Its slower on x86_64 and that is a pretty important arch. So
I am to defer this until we have analyzed the situation some more. Could
there be some effect of atomic ops on the speed with which a cacheline is
released?
--
| Feb 4, 7:47 pm 2008 |
| Christoph Lameter | Re: [git pull] SLUB updates for 2.6.25
Hope to have the slub-mm repository setup tonight which will simplify
things for the future. Hope you still remember ....
--
| Feb 4, 7:04 pm 2008 |
| Pavel Machek | Re: Fwd: brk randomization breaks columns
Your crash is in kernel, no? Anyway, I can workaround mine by
disabling randomization...
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
--
| Feb 4, 3:52 pm 2008 |
| Abel Bernabeu | Re: Fwd: brk randomization breaks columns
Yes, my crash happens at kernel space, but is due to the randomized
params passed to set_brk (the same thing that makes your game crash
later at runtime).
I did not understand why my kernel was crashing before reading your
comments, but now I think is all happening because of the brk
randomization. Sorry, I will not be able to try disabling
randomization until tomorrow at office in order to confirm you this.
I am trying to figure out what is relation the brk randomization
feature and my crash....
| Feb 4, 5:54 pm 2008 |
| Jiri Kosina | Re: Fwd: brk randomization breaks columns
[ please don't drop me from CC, thanks ]
Abel, I actually don't think you have chance to have any issues with
randomization, as the mentioned post talks about 2.6.22.10, which doesn't
randomize the brk start at all.
Thanks,
--
Jiri Kosina
SUSE Labs
--
| Feb 4, 6:48 pm 2008 |
| Abel Bernabeu | Re: Fwd: brk randomization breaks columns
You are rigth, my kernel just randomizes stack top.
I've got a bit sick with this crash in the latest days, trying to
understand the elf loader, trying toolchain configurations, etc... O:)
Yours, Abel.
--
| Feb 4, 7:13 pm 2008 |
| Pavel Machek | Re: Fwd: brk randomization breaks columns
Well, elf loader is indeed evil.
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
--
| Feb 4, 7:39 pm 2008 |
| linux01 | Re: [UPDATED v4] WM97xx touchscreen drivers
I integrated this patch with our 2.6.24 kernel and it broke our APM-based
battery monitor, which uses an ADC channel on the 9712. Support for this
multi-function chip series seems to be in a few places; would it make
sense to have one generic WM97xx driver in drivers/mfd and stack the
codec, touchscreen, etc, drivers logically above (in their respective
areas)? In my experience with the Wolfson series a change to the sound
driver breaks touchscreen, a change to the touchscreen driver changes ADC
...
| Feb 4, 3:00 pm 2008 |
| Mark Brown | Re: [UPDATED v4] WM97xx touchscreen drivers
The expectation of this driver is that the battery monitor driver will
register as the "wm97xx-battery" device and use the wm97xx_read_aux_adc()
function exported by the wm97xx-core driver to access the ADC. Is your
The intention is that these drivers should be able to coexist with the
existing ASoC drivers as-is. We do have existing users doing this - the
first publicly available example that springs to mind is tosa which
also uses the wm9712 with touchscreen and battery, together with the
ASo...
| Feb 4, 5:31 pm 2008 |
| previous day | today | next day |
|---|---|---|
| February 3, 2008 | February 4, 2008 | February 5, 2008 |
| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
| debian developer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Adrian Bunk | Re: LSM conversion to static interface |
git: | |
| Gerrit Renker | [PATCH 26/37] dccp: Integration of dynamic feature activation - part 1 (socket set... |
| Jarek Poplawski | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Frans Pop | svc: failed to register lockdv1 RPC service (errno 97). |
| Linus Torvalds | Re: [GIT]: Networking |
