linux-kernel mailing list

FromSubjectsort iconDate
Rob Landley
[PATCH] Add missing entries to Documentation/arm/00-INDEX
From: Rob Landley <rob@landley.net> Add several missing entries to Documentation/arm/00-INDEX Signed-off-by: Rob Landley <rob@landley.net> --- Documentation/arm/00-INDEX | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff -r f4ca99897c12 Documentation/arm/00-INDEX --- a/Documentation/arm/00-INDEX Sat Sep 29 10:00:15 2007 -0700 +++ b/Documentation/arm/00-INDEX Sun Sep 30 22:16:06 2007 -0500 @@ -4,19 +4,29 @@ Booting - requirements for booting ...
Sep 30, 11:23 pm 2007
JoonwooPark
[PATCH] PCI hotplug : Switch to pci_get_bus_and_slot instead...
This patch fixes these warnings: drivers/pci/hotplug/cpqphp_pci.c: In function ‘cpqhp_configure_device’: drivers/pci/hotplug/cpqphp_pci.c:92: warning: ‘pci_find_slot’ is deprecated (declared at include/linux/pci.h:481) drivers/pci/hotplug/cpqphp_pci.c:102: warning: ‘pci_find_slot’ is deprecated (declared at include/linux/pci.h:481) drivers/pci/hotplug/cpqphp_pci.c: In function ‘cpqhp_unconfigure_device’: drivers/pci/hotplug/cpqphp_pci.c:126: warning: ‘pci_find_slot’ is deprecated ...
Sep 30, 11:09 pm 2007
Richard Knutsson
[PATCH] softmac: Fix compiler-warning
CC net/ieee80211/softmac/ieee80211softmac_wx.o /home/kernel/src/net/ieee80211/softmac/ieee80211softmac_wx.c: In function
Sep 30, 8:24 pm 2007
Richard Purdie
What's in linux-leds.git for 2.6.24?
I've become aware that I should be posting a merge plan, probably slightly earlier than this but better late than never. The leds tree doesn't have much in it, basically some changes to the cobalt LED drivers. http://git.o-hand.com/?p=linux-rpurdie-leds;a=shortlog;h=for-mm Yoichi Yuasa (3): leds: Rename leds-cobalt driver leds: Add Cobalt Raq series LEDs support leds: Update Cobalt Qube series front LED support -- Richard -
Sep 30, 7:52 pm 2007
Richard Purdie
What's in linux-backlight.git for 2.6.24?
I've become aware that I should be posting a merge plan, probably slightly earlier than this but better late than never. The backlight tree doesn't have too much in it, basically a new driver, some cleanups, a driver bugfix and a conversion of a driver to become more generic code. http://git.o-hand.com/?p=linux-rpurdie-backlight;a=shortlog;h=for-mm Adrian Bunk (1): backlight/leds: Make two structs static Haavard Skinnemoen (1): backlight: Add Samsung LTV350QV LCD driver Jespe...
Sep 30, 7:52 pm 2007
Greg KH
Re: What's in linux-backlight.git for 2.6.24?
Can you post a diffstat too, so we get an idea of what is going to be changing? thanks, greg k-h -
Sep 30, 10:43 pm 2007
Robert Hancock
Re: [PATCH] blacklist NCQ on Seagate Barracuda ST380817AS
Are you sure this isn't just a bum drive? Looking at the SMART listing that was posted, looks like it's had some uncorrectable sector read errors in the event log.. -- Robert Hancock Saskatoon, SK, Canada To email, remove "nospam" from hancockr@nospamshaw.ca Home Page: http://www.roberthancock.com/ -
Sep 30, 7:45 pm 2007
Samuel Ortiz
[PATCH -mm] IrCOMM discovery indication simplification
Hi Andrew, Every IrCOMM socket is registered with the discovery subsystem, so we don't need to loop over all of them for every discovery event. We just need to do it for the registered IrCOMM socket. Would you please consider this patch for -mm inclusion ? From: Ryan Reading <ryanr23@gmail.com> Signed-off-by: Samuel Ortiz <samuel@sortiz.org> --- net/irda/ircomm/ircomm_tty_attach.c | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) Index: net-2.6.24-quil...
Sep 30, 7:29 pm 2007
Latchesar Ionkov
[RFC][PATCH 3/6] 9p: 9P server connection code
This patchset provides support for in-kernel 9P2000 servers. This patch add the 9P server connection code. Signed-off-by: Latchesar Ionkov <lucho@ionkov.net> --- net/9p/srv/conn.c | 743 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 743 insertions(+), 0 deletions(-) create mode 100644 net/9p/srv/conn.c diff --git a/net/9p/srv/conn.c b/net/9p/srv/conn.c new file mode 100644 index 0000000..335ee17 --- /dev/null +++ b/net/9p/srv/conn.c @@ -0,0 +1,743 @@ +/* ...
Sep 30, 6:40 pm 2007
Latchesar Ionkov
[RFC][PATCH 5/6] 9p: 9P server TCP socket connection support
This patchset provides support for in-kernel 9P2000 servers. Support for 9P servers listening on TCP sockets. Signed-off-by: Latchesar Ionkov <lucho@ionkov.net> --- net/9p/srv/socksrv.c | 252 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 252 insertions(+), 0 deletions(-) create mode 100644 net/9p/srv/socksrv.c diff --git a/net/9p/srv/socksrv.c b/net/9p/srv/socksrv.c new file mode 100644 index 0000000..c304b91 --- /dev/null +++ b/net/9p/srv/socksrv.c @@ -0,0 ...
Sep 30, 6:42 pm 2007
Latchesar Ionkov
[RFC][PATCH 2/6] 9p: 9P server interface and common srv code
This patchset provides support for in-kernel 9P2000 servers. This patch adds the header file that defines the 9P server interface as well as the code for the common support functions for the server. Signed-off-by: Latchesar Ionkov <lucho@ionkov.net> --- include/net/9p/srv.h | 208 ++++++++++++ net/9p/srv/srv.c | 891 ++++++++++++++++++++++++++++++++++++++++++++++++++ net/9p/srv/srvimpl.h | 46 +++ 3 files changed, 1145 insertions(+), 0 deletions(-) create mode 100644 include/net...
Sep 30, 6:39 pm 2007
Latchesar Ionkov
[RFC][REFERENCE ONLY] 9p: 9P ramfs sample implementation
Sample ramfs file server that uses the 9P in-kernel server implementation. This code is for reference only, it is not supposed to be merged into the kernel. Signed-off-by: Latchesar Ionkov <lucho@ionkov.net> --- net/9p/srv/Kconfig | 6 + net/9p/srv/Makefile | 4 + net/9p/srv/ramfs.c | 938 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 948 insertions(+), 0 deletions(-) create mode 100644 net/9p/srv/ramfs.c diff --git a/net/9p/srv/Kconfig b/net/9p/srv/Kcon...
Sep 30, 6:46 pm 2007
Latchesar Ionkov
[RFC][PATCH 1/6] 9p: 9P server low-level 9P messages support
This patchset provides support for in-kernel 9P2000 servers. Implement support for the 9P messages required by the server side. Signed-off-by: Latchesar Ionkov <lucho@ionkov.net> --- include/net/9p/9p.h | 19 ++ net/9p/conv.c | 508 ++++++++++++++++++++++++++++++++++++++++++++++++++- net/9p/fcprint.c | 2 + 3 files changed, 525 insertions(+), 4 deletions(-) diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h index 686425a..eaa2385 100644 --- a/include/net/9p/9p.h ++...
Sep 30, 6:37 pm 2007
Latchesar Ionkov
[RFC][PATCH 4/6] 9p: 9P server fid management
This patchset provides support for in-kernel 9P2000 servers. This patch adds the 9P server fid management. Signed-off-by: Latchesar Ionkov <lucho@ionkov.net> --- net/9p/srv/fid.c | 178 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 178 insertions(+), 0 deletions(-) create mode 100644 net/9p/srv/fid.c diff --git a/net/9p/srv/fid.c b/net/9p/srv/fid.c new file mode 100644 index 0000000..7c86204 --- /dev/null +++ b/net/9p/srv/fid.c @@ -0,0 +1,178 @@ +/* + *...
Sep 30, 6:41 pm 2007
Latchesar Ionkov
[RFC][PATCH 6/6] 9p: 9P server Kconfig and Makefile changes
This patchset provides support for in-kernel 9P2000 servers. 9P server Kconfig and Makefile changes. Signed-off-by: Latchesar Ionkov <lucho@ionkov.net> --- net/9p/Kconfig | 1 + net/9p/Makefile | 1 + net/9p/srv/Kconfig | 9 +++++++++ net/9p/srv/Makefile | 7 +++++++ 4 files changed, 18 insertions(+), 0 deletions(-) create mode 100644 net/9p/srv/Kconfig create mode 100644 net/9p/srv/Makefile diff --git a/net/9p/Kconfig b/net/9p/Kconfig index eecbf12..007ce2b ...
Sep 30, 6:43 pm 2007
Gene Heskett
2.6.23-rc8, no tvtime
Greetings all; I have a pcHDTV-3000 card in this box. This is a cx88 based card AFAIK. I had a need to check something with tvtime today and found it couldn't open /dev/video0 Checking in /dev, there indeed is no such animal, or anything seemingly video related. An lsmod|grep cx88 returns: cx8802 13572 0 cx8800 25568 0 compat_ioctl32 1280 1 cx8800 cx88xx 56612 2 cx8802,cx8800 ir_common 29444 1 cx88xx i2c_algo_b...
Sep 30, 7:03 pm 2007
Grant Likely
[PATCH v2 0/6] SystemACE: rework and of_platform bus binding...
Here is a set of rework patches on the Xilinx SystemACE driver which ends in the addition of an of_platform bus binding. The of_platform bus binding is needed to use the driver from arch/powerpc. SystemACE is most commonly used in Xilinx Virtex system (ppc405). Jens, I'm hoping I can get these changes in for 2.6.24. Assuming nobody raises any issues, can you please merge these into your tree? Thanks, g. Grant Likely (6): Add Xilinx SystemACE entry to maintainers Sysace: Use the establis...
Sep 30, 6:56 pm 2007
Grant Likely
[PATCH v2 2/6] Sysace: Use the established platform bus api
From: Grant Likely <grant.likely@secretlab.ca> SystemACE uses the platform bus binding, but it doesn't use the platform bus API. Move to using the correct API for consistency sake and future proofing against platform bus changes. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> --- drivers/block/xsysace.c | 48 +++++++++++++++++++++++++++++------------------ 1 files changed, 30 insertions(+), 18 deletions(-) diff --git a/drivers/block/xsysace.c b/drivers/block/xsysace....
Sep 30, 6:57 pm 2007
Christoph Hellwig
Re: [PATCH v2 2/6] Sysace: Use the established platform bus ...
rc = platform_driver_register(&ace_platform_driver); if (rc) goto err_plat; labels should be indented zero or one space, but not more. -
Sep 30, 7:05 pm 2007
Grant Likely
Re: [PATCH v2 2/6] Sysace: Use the established platform bus ...
scripts/Lindent does this. Originally, I *didn't* have my labels indented. :-) Does Lindent need to be fixed? Cheers, g. -- Grant Likely, B.Sc., P.Eng. Secret Lab Technologies Ltd. grant.likely@secretlab.ca (403) 399-0195 -
Sep 30, 7:33 pm 2007
Grant Likely
[PATCH v2 1/6] Add Xilinx SystemACE entry to maintainers
From: Grant Likely <grant.likely@secretlab.ca> I'm the author of the SystemACE driver Signed-off-by: Grant Likely <grant.likely@secretlab.ca> --- MAINTAINERS | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 8f80068..cb6323e 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4179,6 +4179,13 @@ W: http://oss.sgi.com/projects/xfs T: git git://oss.sgi.com:8090/xfs/xfs-2.6.git S: Supported +XILINX SYSTEMACE DRIVER +P...
Sep 30, 6:57 pm 2007
Grant Likely
[PATCH v2 4/6] Sysace: minor rework and cleanup changes
From: Grant Likely <grant.likely@secretlab.ca> Miscellanious rework to the sysace driver; Not critical, but makes the subsequent addition of the of_platform bus binding a wee bit cleaner Signed-off-by: Grant Likely <grant.likely@secretlab.ca> --- drivers/block/xsysace.c | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/drivers/block/xsysace.c b/drivers/block/xsysace.c index 555939b..10bb4e5 100644 --- a/drivers/block/xsysace.c +++ b/drivers/blo...
Sep 30, 6:57 pm 2007
Grant Likely
[PATCH v2 5/6] Sysace: Move IRQ handler registration to occu...
From: Grant Likely <grant.likely@secretlab.ca> The FSM needs to be initialized before it is safe to call the ISR Signed-off-by: Grant Likely <grant.likely@secretlab.ca> --- drivers/block/xsysace.c | 21 ++++++++++----------- 1 files changed, 10 insertions(+), 11 deletions(-) diff --git a/drivers/block/xsysace.c b/drivers/block/xsysace.c index 10bb4e5..296d567 100644 --- a/drivers/block/xsysace.c +++ b/drivers/block/xsysace.c @@ -949,15 +949,6 @@ static int __devinit ace_setu...
Sep 30, 6:57 pm 2007
Grant Likely
[PATCH v2 6/6] Sysace: Add of_platform_bus binding
From: Grant Likely <grant.likely@secretlab.ca> The of_platform bus binding is needed to make the device driver usable under arch/powerpc. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> --- drivers/block/xsysace.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 89 insertions(+), 0 deletions(-) diff --git a/drivers/block/xsysace.c b/drivers/block/xsysace.c index 296d567..56c4af3 100644 --- a/drivers/block/xsysace.c +++ b/drivers/block/xsysace.c ...
Sep 30, 6:57 pm 2007
Grant Likely
[PATCH v2 3/6] Sysace: Move structure allocation from bus bi...
From: Grant Likely <grant.likely@secretlab.ca> Split the determination of device registers/irqs/etc from the actual allocation and initialization of the device structure. This cleans up the code a bit in preparation to add an of_platform bus binding Signed-off-by: Grant Likely <grant.likely@secretlab.ca> --- drivers/block/xsysace.c | 99 +++++++++++++++++++++++++++++------------------ 1 files changed, 61 insertions(+), 38 deletions(-) diff --git a/drivers/block/xsysace.c b/dr...
Sep 30, 6:57 pm 2007
legolas558@users.sou...
[2.6.22] i8042, ACPI, ipw2100 and issues reported by psmouse...
Kernel: 2.6.22-r5 Kernel option: i8042.nomux=1 See attached full dmesg for more. I have recently updated my kernel to 2.6.22 and - in the same occasion - changed various options in the kernel .config; I cannot state that the problem have arisen since kernel 2.6.22 but more probably since I enabled ACPI. My recent configuration changes have been also to xorg.conf (regarding GLX and AIGLX), but I have no real clue about what is causing the troubles. It must be a particular combination of ker...
Sep 30, 5:42 pm 2007
Scott Simpson
Conflict when loading initio driver
<!-- #toc, .toc, .mw-warning { border: 1px solid #aaa; background-color: #f9f9f9; padding: 5px; font-size: 95%; } #toc h2, .toc h2 { display: inline; border: none; padding: 0; font-size: 100%; font-weight: bold; } #toc #toctitle, .toc #toctitle, #toc .toctitle, .toc .toctitle { text-align: center; } #toc ul, .toc ul { list-style-type: none; list-style-image: none; margin-left: 0; padding-left: 0; text-align: left; } #toc ...
Sep 30, 5:07 pm 2007
Alan Cox
Re: Conflict when loading initio driver
Humm not a collision - thats a bug in the driver updating. Looks like the changes I made and combined with Christoph's lost a line somewhere when I was merging it all. Try the following Signed-off-by: Alan Cox <alan@redhat.com> diff -u --new-file --exclude-from /usr/src/exclude --recursive linux.vanilla-2.6.23rc8-mm1/drivers/scsi/initio.c linux-2.6.23rc8-mm1/drivers/scsi/initio.c --- linux.vanilla-2.6.23rc8-mm1/drivers/scsi/initio.c 2007-09-26 16:46:54.000000000 +0100 +++ linux-2.6.23rc8-m...
Sep 30, 5:47 pm 2007
Rafael J. Wysocki
2.6.23-rc8-git4: Known regressions from 2.6.22
Hi, This message lists some known regressions from 2.6.22 for which there are no fixes in the mainline that I know of.  If any of them have been fixed already, please let me know. If you know of any other unresolved regressions from 2.6.22, please let me know either and I'll add them to the list. Subject: zd1211 device is no longer configured Submitter: Oliver Neukum <oliver@neukum.org> References: http://marc.info/?l=linux-usb-devel&m=118854967709322&w=2 [ message continues ]
" title="http://bugzilla.kern...">http://bugzilla.kern...
Sep 30, 5:05 pm 2007
Randy Dunlap
Re: 2.6.23-rc8-git4: Known regressions from 2.6.22
I'm told that this is already patched in the net-2.6.24 git tree, but it should be merged for 2.6.23 IMO. --- ~Randy -
Sep 30, 5:30 pm 2007
Linus Torvalds
Re: 2.6.23-rc8-git4: Known regressions from 2.6.22
Jeff, John? Build errors like this may not be a huge deal, but the fix looks worthwhile anyway, so is there any reason this hasn't been sent upstream? Linus -
Sep 30, 5:44 pm 2007
John W. Linville
Re: 2.6.23-rc8-git4: Known regressions from 2.6.22
My mistake -- I thought this was a problem introduced in the patches queued for 2.6.24. Feel free to pull from here: git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git fixes-jgarzik Thanks! John --- The following changes since commit 4942de4a0e914f205d351a81873f4f63986bcc3c: Linus Torvalds (1): Linux 2.6.23-rc8 are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git fixes-jgarzik Randy D...
Sep 30, 8:44 pm 2007
Renato S. Yamane
When come back from RAM, lcd brightness is changed
uname -a Linux mandachuva 2.6.22.9-cfs-v22 #2 PREEMPT Sun Sep 30 15:21:17 BRT 2007 i686 GNU/Linux Distro: Debian Etch When I use KPowersave and click on "Suspend to RAM", my laptop Toshiba M45-S355 "sleep" and "wake-up" very well, but LCD Brightness is changed to MAX (I hate this "sunshine" on my eyes). One more detail: Kernel Linux don't have control of lcd brightness, so I need use omnibook driver to do this (<http://omnibook.sourceforge.net>). Regards, Renato -
Sep 30, 3:25 pm 2007
Rafael J. Wysocki
Re: When come back from RAM, lcd brightness is changed
Well, that probably is the reason why the brightness changes after a resume. As a workaround you can probably use a wrapper script to set the brightness to the desired level after a resume from RAM. Greetings, Rafael -
Sep 30, 3:48 pm 2007
Dmitry Adamushko
Re: [git] CFS-devel, latest code
and this one, make dequeue_entity() / enqueue_entity() and update_stats_dequeue() / update_stats_enqueue() look similar, structure-wise. zero effect, functionally-wise. Signed-off-by: Dmitry Adamushko <dmitry.adamushko@gmail.com> --- diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index 2674e27..ed75a04 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c @@ -366,7 +366,6 @@ update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se) static inline void up...
Sep 30, 3:18 pm 2007
Dmitry Adamushko
Re: [git] CFS-devel, latest code
remove obsolete code -- calc_weighted() Signed-off-by: Dmitry Adamushko <dmitry.adamushko@gmail.com> --- diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index fe4003d..2674e27 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c @@ -342,17 +342,6 @@ update_stats_wait_start(struct cfs_rq *cfs_rq, struct sched_entity *se) schedstat_set(se->wait_start, rq_of(cfs_rq)->clock); } -static inline unsigned long -calc_weighted(unsigned long delta, struct sched_en...
Sep 30, 3:15 pm 2007
Dmitry Adamushko
Re: [git] CFS-devel, latest code
here is a few patches on top of the recent 'sched-dev': (1) [ proposal ] make timeslices of SCHED_RR tasks constant and not dependent on task's static_prio; (2) [ cleanup ] calc_weighted() is obsolete, remove it; (3) [ refactoring ] make dequeue_entity() / enqueue_entity() and update_stats_dequeue() / update_stats_enqueue() look similar, structure-wise. ----------------------------------- (1) - make timeslices of SCHED_RR tasks constant and not dependent on task's static_prio [1] ;...
Sep 30, 3:13 pm 2007
Sam Ravnborg
kbuild: introduce ccflags-y, asflags-y and ldflags-y
I have just committed following patch to kbuild.git. It deprecate use of EXTRA_CFLAGS, EXTRA_AFLAGS and EXTRA_LDFLAGS in favour of ccflags-y, asflags-y and ldflags-y. This allow us to use a more kbuild alike syntax like the following: ccflags-$(CONFIG_WHATEVER_DEBUG) := -DDEBUG The other kbuild enhancements discussed are put on ice for a few days. I wanted this enhancement to hit the kernel in the merge window so we had a better opportunity to fix the in-tree users of the deprecated users ...
Sep 30, 3:10 pm 2007
Soeren Sandmann
[PATCH] Add ability to dump mapped pages with /proc/sys/vm/d...
This patch adds the ability to drop mapped pages with /proc/sys/vm/drop_caches. This is useful to get repeatable measurements of startup time for applications. Without it, pages that are mapped in already-running applications will not get dropped, so the time measured will not be a true cold-cache time. Rik pointed out that "be_atomic" is a bit pointless since there is a race on SMP anyway where pages can be added. However, it is there in the existing code, so I added it for the new code as wel...
Sep 30, 2:03 pm 2007
Dave Jones
Re: [PATCH] Add ability to dump mapped pages with /proc/sys/...
On Sun, Sep 30, 2007 at 08:03:51PM +0200, Soeren Sandmann wrote: > This patch adds the ability to drop mapped pages with > /proc/sys/vm/drop_caches. This is useful to get repeatable > measurements of startup time for applications. > > Without it, pages that are mapped in already-running applications will > not get dropped, so the time measured will not be a true cold-cache > time. > > Rik pointed out that "be_atomic" is a bit pointless since there is a > ...
Sep 30, 11:36 pm 2007
Denys
2.6.21 -> 2.6.22 & 2.6.23-rc8 performance regression
P.S.S. I tried changing clocksource from acpi_pm to tsc. No difference. Tried to lock eth0 by smp_affinity to single CPU (no other interrups, except ioapic timer(LOC) there). No luck. I tried to change hashes in nf_conntrack, no difference. Tried to change eth0 weidht - no difference. Also i notice, that exactly when softirqd start using CPU nearby 100% - problems happens. At this time (with or without nice - the same, also the same to ping any host in network) defaulthost ~ #nice -n -10...
Sep 30, 1:31 pm 2007
Ingo Molnar
Re: [patch/backport] CFS scheduler, -v22, for v2.6.23-rc8, v...
i think if you are relatively sure that the box does not have any real 3D hardware in it (supported by X) then glxgears will interact badly with X and can cause such symptoms. In that case glxgears 'spams' the X server with requests and everyone else suffers from that. The fair-group scheduler indeed could shift CPU usage of X just enough (in X's favor!) that might trigger such problems. Such "spam X" workloads often react in a paradoxial way: a scheduler that gives X _more_ CPU time will ap...
Sep 30, 1:27 pm 2007
Matthew
Fwd: [patch/backport] CFS scheduler, -v22, for v2.6.23-rc8, ...
Thanks for your answer (sorry, I didn't know your email had changed) well, this will take some time since I don't work every day & it's turned off most of the time, hope that is OK before I proceed with that data-collection: do you think it is possible that it might be related to "Fair group CPU scheduler" being selected ? I think that one and another additional option (don't know right now its name, but will look for it later) was the only difference on the .config-file between 2.6.23-r...
Sep 30, 12:45 pm 2007
Neil Romig
File corruption when using kernels 2.6.18+
I am using kernel 2.6.17.14, and would like to use newer versions for the wireless code but I get file corruption with any kernel more recent than this. My system uses a SiS645DX chipset (it is a rebadged CLEVO D400E) with 5513 IDE. I get this corruption with read/writes, i.e using "cp", "dd", when compiling software, writing to CD, etc etc. An example: cp ../Changelog-2.6.18 . diff Changelog-2.6.18 ../Changelog-2.6.18 16377c16377 < LD .top_vmlinux1 --- > LD .tmp_...
Sep 30, 11:40 am 2007
Pekka Enberg
Re: File corruption when using kernels 2.6.18+
Hi Neil, I don't but you can try to isolate the changeset introducing the corruption with git-bisect: http://kernel.org/pub/software/scm/git/docs/v1.3.3/howto/isolate-bugs-with-bisect.txt So, in your case, you do: <clone Linux mainline git repository> # git bisect start # git bisect bad v2.6.18 # git bisect good v2.6.17 then <recompile and test> <git bisect [good|bad] depending on results> <repeat until you've narrowed down the changeset> Also, please rem...
Sep 30, 12:29 pm 2007
Denys
2.6.21 -> 2.6.22 & 2.6.23-rc8 performance regression
P.S. It seems SLAB/SLUB doesn't make much difference, just seems SLUB use a bit more some resources. Still problem appearing with softirqd/0 or softirqd/1 taking a lot CPU (while on 2.6.21 it never came up of the "top"), and doesn't matter - if NAPI on e1000 disabled or enabled. Additionally disabling all disk operations doesn't make any difference. defaulthost ~ #mpstat 1 Linux 2.6.23-rc8-build-0017 (defaulthost) 09/30/07 21:20:29 CPU %user %nice %sys %iowait %irq %sof...
Sep 30, 11:22 am 2007
Denys
2.6.21 -> 2.6.22 & 2.6.23-rc8 performance regression
I've moved recently one of my proxies(squid and some compressing application) from 2.6.21 to 2.6.22, and notice huge performance drop. I think this is important, cause it can cause serious regression on some other workloads like busy web-servers and etc. After some analysis of different options i can bring more exact numbers: 2.6.21 able to process 500-550 requests/second and 15-20 Mbit/s of traffic, and working great without any slowdown or instability. 2.6.22 able to process only 250-300 ...
Sep 30, 10:48 am 2007
Eric Dumazet
Re: 2.6.21 -> 2.6.22 & 2.6.23-rc8 performance regression
Could you try with SLUB but disabling CONFIG_SLUB_DEBUG ? -
Sep 30, 1:48 pm 2007
Nick Piggin
Re: 2.6.21 -> 2.6.22 & 2.6.23-rc8 performance regression
Hi Denys, thanks for reporting (btw. please reply-to-all when replying on lkml). You say that SLAB is better than SLUB on an otherwise identical kernel, but I didn't see if you quantified the actual numbers? It sounds like there is still a regression with SLAB? -
Sep 30, 12:25 am 2007
Denys
Re: 2.6.21 -> 2.6.22 & 2.6.23-rc8 performance regression
Hi I can confirm, that reversing this patch on 2.6.23-rc8 fixes the problem. Checked on 3 different servers. softirq not jumping anymore on top of "top" and mpstat also looks stable, reasonable and nice. pi linux-git # git bisect bad Bisecting: 0 revisions left to test after this [f85958151900f9d30fa5ff941b0ce71eaa45a7de] [NET]: random functions can use nsec resolution instead of usec -- Denys Fedoryshchenko Technical Manager Virtual ISP S.A.L. -
Sep 30, 7:24 pm 2007
previous daytodaynext day
September 29, 2007September 30, 2007October 31, 2007