Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-01-30 Thread Al Boldi
Andreas Dilger wrote: > On Wednesday 30 January 2008, Al Boldi wrote: > > And, a quick test of successive 1sec delayed syncs shows no hangs until > > about 1 minute (~180mb) of db-writeout activity, when the sync abruptly > > hangs for minutes on end, and io-wait shows almos

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-02-01 Thread Al Boldi
Chris Mason wrote: > On Thursday 31 January 2008, Jan Kara wrote: > > On Thu 31-01-08 11:56:01, Chris Mason wrote: > > > On Thursday 31 January 2008, Al Boldi wrote: > > > > The big difference between ordered and writeback is that once the > > > > slowd

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-02-04 Thread Al Boldi
Jan Kara wrote: > On Sat 02-02-08 00:26:00, Al Boldi wrote: > > Chris Mason wrote: > > > Al, could you please compare the write throughput from vmstat for the > > > data=ordered vs data=writeback runs? I would guess the data=ordered > > > one has a lower over

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-02-05 Thread Al Boldi
Jan Kara wrote: > On Tue 05-02-08 10:07:44, Al Boldi wrote: > > Jan Kara wrote: > > > On Sat 02-02-08 00:26:00, Al Boldi wrote: > > > > Chris Mason wrote: > > > > > Al, could you please compare the write throughput from vmstat for > > > >

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-02-10 Thread Al Boldi
Andreas Dilger wrote: > On Jan 26, 2008 08:27 +0300, Al Boldi wrote: > > Jan Kara wrote: > > > > data=ordered mode has proven reliable over the years, and it does > > > > this by ordering filedata flushes before metadata flushes. But this > > > > some

RE: [ANNOUNCE] Interbench v0.20 - Interactivity benchmark

2005-07-12 Thread Al Boldi
On Tue, 12 Jul 2005, Con Kolivas wrote: > It runs a real time high priority timing thread that wakes up the thread Nice, but why is it threaded? Forking would be more realistic! - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTE

RE: [PATCH] i386: Selectable Frequency of the Timer Interrupt

2005-07-14 Thread Al Boldi
On Thu, 2005-07-14 at 09:37 -0700, Linus Torvalds wrote: > > There's absolutely nothing wrong with "jiffies", and anybody who > thinks that > > msleep(20); > > is fundamentally better than > > timeout = jiffies + HZ/50; > What's wrong with structured programming? - To unsubscribe f

RE: [announce] linux kernel performance project launch at sourceforge.net

2005-07-15 Thread Al Boldi
Ken Chen <[EMAIL PROTECTED]> wrote: { ...Linux kernel needs a systematic and disciplined way to measure and track kernel performance on a regular basis. } Nice, but the numbers would have more meaning if they were put in relation to System Load ( CPU,MEM,DISK,NET,... ) Also, a test that saturates

RE: [ANNOUNCE] Interbench v0.21

2005-07-15 Thread Al Boldi
Con Kolivas wrote: { Version 0.21 update Changed the design to run the benchmarked and background loads as separate processes that spawn their own threads instead of everything running as a thread of the same process. } Great! - To unsubscribe from this list: send the line "unsubscribe linux-kern

Re: XFS corruption during power-blackout

2005-07-16 Thread Al Boldi
Russell Howe wrote: { XFS only journals metadata, not data. So, you are supposed to get a consistent filesystem structure, but your data consistency isn't guaranteed. } What did XFS do to detect filedata-corruption before it was added to the vanilla-kernel? Maybe it did not update the metadata

RE: Kernel doesn't free Cached Memory

2005-07-22 Thread Al Boldi
Dick Johnson wrote: { > On Fri, 2005-07-22 at 08:27 -0300, Vinicius wrote: > [...] >>I have a server with 2 Pentium 4 HT processors and 32 GB of RAM, >> this server runs lots of applications that consume lots of memory to. >> When I stop this applications, the kernel doesn't free memory (the

RE: kernel optimization

2005-07-22 Thread Al Boldi
Adrian Bunk wrote: { On Fri, Jul 22, 2005 at 07:55:48PM +0100, christos gentsis wrote: > i would like to ask if it possible to change the optimization of the > kernel from -O2 to -O3 :D, how can i do that? if i change it to the > top level Makefile does it change to all the Makefiles? And since

RE: Giving developers clue how many testers verifiedcertain kernel version

2005-07-22 Thread Al Boldi
Lee Revell wrote: { On Fri, 2005-07-22 at 21:15 -0500, Alejandro Bonilla wrote: > OK, I will, but I first of all need to learn how to tell if benchmarks > are better or worse. Con's interactivity benchmark looks quite promising for finding scheduler related interactivity regressions. } Scheduler

RE: [PATCH] quieten OOM killer noise

2005-07-04 Thread Al Boldi
Anton Blanchard wrote: { Id suggest adding a printk level to the printks in mm/oom-kill.c and using /proc/sys/kernel/printk to silence them. } Good option! Also, why is OOM-killer needed when overcommit is disabled? Al - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in

RE: [git patches] IDE update

2005-07-04 Thread Al Boldi
Bartlomiej Zolnierkiewicz wrote: { Please pull from: rsync://rsync.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6.git } Does it fix the idedriver int/dma problem? Al - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More maj

RE: [git patches] IDE update

2005-07-04 Thread Al Boldi
Bartlomiej Zolnierkiewicz wrote: { What is the "int/dma problem"? } Hdparm -tT gives 38mb/s in 2.4.31 Cat /dev/hda > /dev/null gives 2% user 33% sys 65% idle Hdparm -tT gives 28mb/s in 2.6.12 Cat /dev/hda > /dev/null gives 2% user 25% sys 0% idle 73% IOWAIT It feels like DMA is not being applied

RE: [git patches] IDE update

2005-07-04 Thread Al Boldi
Bartlomiej Zolnierkiewicz wrote: { > On 7/4/05, Al Boldi <[EMAIL PROTECTED]> wrote: > Hdparm -tT gives 38mb/s in 2.4.31 > Cat /dev/hda > /dev/null gives 2% user 33% sys 65% idle > > Hdparm -tT gives 28mb/s in 2.6.12 > Cat /dev/hda > /dev/null gives 2% user 25% sys 0%

RE: [git patches] IDE update

2005-07-04 Thread Al Boldi
Bartlomiej Zolnierkiewicz wrote: { > > > >>On 7/4/05, Al Boldi <[EMAIL PROTECTED]> wrote: > >>Hdparm -tT gives 38mb/s in 2.4.31 > >>Cat /dev/hda > /dev/null gives 2% user 33% sys 65% idle > >> > >>Hdparm -tT gives 28mb/s in 2.6.12 &

IOWAIT block layer problem

2005-07-04 Thread Al Boldi
André Tomt wrote: { >>>>On 7/4/05, Al Boldi <[EMAIL PROTECTED]> wrote: >>>>Hdparm -tT gives 38mb/s in 2.4.31 >>>>Cat /dev/hda > /dev/null gives 2% user 33% sys 65% idle >>>> >>>>Hdparm -tT gives 28mb/s in 2.6.12 >>>&

RE: XFS corruption during power-blackout

2005-07-05 Thread Al Boldi
Sonny Rao wrote: { > > >On Wed, Jun 29, 2005 at 07:53:09AM +0300, Al Boldi wrote: > > >>What I found were 4 things in the dest dir: > > >>1. Missing Dirs,Files. That's OK. > > >>2. Files of size 0. That's acceptable. > > >>3.

RE: [git patches] IDE update

2005-07-05 Thread Al Boldi
Linus Torvalds wrote: { On Wed, 6 Jul 2005, Grant Coady wrote: > > Executive Summary Btw, can you try this same thing (or at least a subset) with a large file on a filesystem? Does that show the same pattern, or is it always just the raw device? } Linus, Cat /dev/hda > /dev/null and cat /tmp/tst

RE: XFS corruption during power-blackout

2005-07-05 Thread Al Boldi
Sonny Rao wrote: { > > > >On Wed, Jun 29, 2005 at 07:53:09AM +0300, Al Boldi wrote: > > > >>What I found were 4 things in the dest dir: > > > >>1. Missing Dirs,Files. That's OK. > > > >>2. Files of size 0. That's acceptable. &g

RE: [git patches] IDE update

2005-07-09 Thread Al Boldi
Jens Axboe <[EMAIL PROTECTED]> wrote:{ > >> > >>>Some more investigation - it appears to be broken read-ahead, actually. > >>> > >>>--- mm/readahead.c~2005-07-08 11:16:14.0 +0200 > >>>+++ mm/readahead.c 2005-07-08 11:17:49.0 +0200 > >>>@@ -351,7 +351,9 @@ > >>>

RE: kernel optimization

2005-07-25 Thread Al Boldi
Dr. Horst H. von Brand wrote: { Al Boldi <[EMAIL PROTECTED]> wrote: > Adrian Bunk wrote: { > On Fri, Jul 22, 2005 at 07:55:48PM +0100, christos gentsis wrote: > > i would like to ask if it possible to change the optimization of the > > kernel from -O2 to -O3 :D, how can i

RE: Kernel doesn't free Cached Memory

2005-07-25 Thread Al Boldi
Bill Davidsen wrote: { Al Boldi wrote: > Dick Johnson wrote: { > >>On Fri, 2005-07-22 at 08:27 -0300, Vinicius wrote: >>[...] >> >>> I have a server with 2 Pentium 4 HT processors and 32 GB of RAM, >>>this server runs lots of applications that cons

RE: kernel optimization

2005-07-26 Thread Al Boldi
Adrian Bunk wrote: { On Tue, Jul 26, 2005 at 08:22:59AM +0300, Al Boldi wrote: > Dr. Horst H. von Brand wrote: { > Al Boldi <[EMAIL PROTECTED]> wrote: > > Adrian Bunk wrote: { > > On Fri, Jul 22, 2005 at 07:55:48PM +0100, christos gentsis wrote: > > > i would lik

Re: Where is the performance bottleneck?

2005-08-29 Thread Al Boldi
Holger Kiehl wrote: > Why do I only get 247 MB/s for writting and 227 MB/s for reading (from the > bonnie++ results) for a Raid0 over 8 disks? I was expecting to get nearly > three times those numbers if you take the numbers from the individual > disks. > > What limit am I hitting here? You may be

Re: Where is the performance bottleneck?

2005-08-30 Thread Al Boldi
Holger Kiehl wrote: > On Mon, 29 Aug 2005, Al Boldi wrote: > > You may be hitting a 2.6 kernel bug, which has something to do with > > readahead, ask Jens Axboe about it! (see "[git patches] IDE update" > > thread) Sadly, 2.6.13 did not fix it either. > >

Re: Where is the performance bottleneck?

2005-09-02 Thread Al Boldi
Holger Kiehl wrote: > top - 08:39:11 up 2:03, 2 users, load average: 23.01, 21.48, 15.64 > Tasks: 102 total, 2 running, 100 sleeping, 0 stopped, 0 zombie > Cpu(s): 0.0% us, 17.7% sy, 0.0% ni, 0.0% id, 78.9% wa, 0.2% hi, 3.1% > si Mem: 8124184k total, 8093068k used,31116k free,

Forcing modes in libata (was: SATA buffered read VERY slow)

2008-01-05 Thread Al Boldi
Alan Cox wrote: > hdparm supports identify to read modes on drives with libata. The one > thing you cannot do is force modes right now. I have some AOpen 52x/32x CD-RWriter, that advertises itself as DMA capable, but has a hard time sustaining such access. The only way to make access to this dr

Re: [PATCH 5/5] USB Kconfig: Source "drivers/usb/gadget/Kconfig" for ARCH=v850

2008-01-05 Thread Al Boldi
Source "drivers/usb/gadget/Kconfig" for ARCH=v850. Cc: David Brownell <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Cc: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Al Boldi <[EMAIL PROTECTED]> --- --- 23.a/arch/v850/Kconfig +++ 23.b/arch/v850/

Re: [PATCH 4/5] USB Kconfig: Source "drivers/usb/gadget/Kconfig" for ARCH=arm

2008-01-05 Thread Al Boldi
From: David Brownell <[EMAIL PROTECTED]> Source "drivers/usb/gadget/Kconfig" for ARCH=arm. Cc: David Brownell <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Cc: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Al Boldi <[EMAIL PROTECTED]> --- ---

Re: [PATCH 1/5] USB Kconfig: Reorganize USB Kconfig Menu

2008-01-05 Thread Al Boldi
Reorganize USB Kconfig Menu, and move USB_GADGET out into the Device Driver Menu. Cc: David Brownell <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Cc: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Al Boldi <[EMAIL PROTECTED]> --- --- 23.a/drivers/Kconfig

Re: [PATCH 3/5] USB Kconfig: Select ATM for USB DSL modem support

2008-01-05 Thread Al Boldi
Select ATM for USB DSL modem support. Cc: David Brownell <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Cc: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Al Boldi <[EMAIL PROTECTED]> --- --- 23.a/drivers/usb/atm/Kconfig +++ 23.b/drivers/usb/atm/Kconfig @@ -4

Re: [PATCH 2/5] USB Kconfig: Select SCSI for USB Mass Storage support

2008-01-05 Thread Al Boldi
Select SCSI for USB Mass Storage support. Cc: David Brownell <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Cc: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Al Boldi <[EMAIL PROTECTED]> --- --- 23.a/drivers/usb/storage/Kconfig +++ 23.b/drivers/usb/storag

[PATCH 0/5] USB Kconfig: Reorganize USB Kconfig Menu

2008-01-05 Thread Al Boldi
Reorganize USB Kconfig Menu, and move USB_GADGET out into the Device Driver Menu.  This helps the USB Kconfig Menu to be more logical/usable. Patchset against 2.6.23 arch/arm/Kconfig|2 ++ arch/v850/Kconfig |2 ++ drivers/Kconfig |2 ++ drivers/usb/

Re: Forcing modes in libata (was: SATA buffered read VERY slow)

2008-01-05 Thread Al Boldi
Alan Cox wrote: > Al Boldi <[EMAIL PROTECTED]> wrote: > > What's hindering the ability to force a mode in libata, as is possible > > with the normal ide-driver? > > We want it to be correct and race free. That means we have to synchronize > all the devices

Re: [PATCH 2/5] USB Kconfig: Select SCSI for USB Mass Storage support

2008-01-05 Thread Al Boldi
Sam Ravnborg wrote: > On Sat, Jan 05, 2008 at 11:03:30PM +0200, Adrian Bunk wrote: > > For kconfig users, "select" is _much_ better than sending them through > > different menus. > > Only if used within the current limitations of Kconfig. > And that requires you to use select only to select symbols

Re: [PATCH 2/5] USB Kconfig: Select SCSI for USB Mass Storage support

2008-01-06 Thread Al Boldi
Stefan Richter wrote: > Al Boldi wrote: > > Sam Ravnborg wrote: > >> And that requires you to use select only to select symbols with > >> no dependencies. > >> > >> In this case we do not know if BLOCK is enabled or not. > > > > Good point!

[RFD] Incremental fsck

2008-01-08 Thread Al Boldi
Andi Kleen wrote: > Theodore Tso <[EMAIL PROTECTED]> writes: > > Now, there are good reasons for doing periodic checks every N mounts > > and after M months. And it has to do with PC class hardware. (Ted's > > aphorism: "PC class hardware is cr*p"). > > If these reasons are good ones (some skepti

Re: [RFD] Incremental fsck

2008-01-08 Thread Al Boldi
Rik van Riel wrote: > Al Boldi <[EMAIL PROTECTED]> wrote: > > Has there been some thought about an incremental fsck? > > > > You know, somehow fencing a sub-dir to do an online fsck? > > Search for "chunkfs" Sure, and there is TileFS too. But why wouldn

Re: [RFD] Incremental fsck

2008-01-09 Thread Al Boldi
Valerie Henson wrote: > On Jan 8, 2008 8:40 PM, Al Boldi <[EMAIL PROTECTED]> wrote: > > Rik van Riel wrote: > > > Al Boldi <[EMAIL PROTECTED]> wrote: > > > > Has there been some thought about an incremental fsck? > > > > > >

Re: [RFD] Incremental fsck

2008-01-10 Thread Al Boldi
Rik van Riel wrote: > Al Boldi <[EMAIL PROTECTED]> wrote: > > Ok, but let's look at this a bit more opportunistic / optimistic. > > You can't play fast and loose with data integrity. Correct, but you have to be realistic... > Besides, if we looked at things

Re: git guidance

2007-12-06 Thread Al Boldi
Phillip Susi wrote: > Al Boldi wrote: > > IOW, git currently only implements the server-side use-case, but fails > > to deliver on the client-side. By introducing a git-client manager that > > handles the transparency needs of a single user, it should be possible > >

Re: git guidance

2007-12-06 Thread Al Boldi
Andreas Ericsson wrote: > Al Boldi wrote: > > Phillip Susi wrote: > >> Al Boldi wrote: > >>> IOW, git currently only implements the server-side use-case, but fails > >>> to deliver on the client-side. By introducing a git-client manager > >>>

Re: git guidance

2007-12-06 Thread Al Boldi
Johannes Schindelin wrote: > Hi, Hi > On Fri, 7 Dec 2007, Al Boldi wrote: > > You need to re-read the thread. > > I don't know why you write that, and then say thanks. Clearly, what you > wrote originally, and what Andreas pointed out, were quite obvious > indicato

Re: git guidance

2007-12-07 Thread Al Boldi
Andreas Ericsson wrote: > So, to get to the bottom of this, which of the following workflows is it > you want git to support? > > ### WORKFLOW A ### > edit, edit, edit > edit, edit, edit > edit, edit, edit > Oops I made a mistake and need to hop back to "current - 12". > edit, edit, edit > edit, ed

Re: git guidance

2007-12-08 Thread Al Boldi
[EMAIL PROTECTED] wrote: > On Sat, 08 Dec 2007 07:56:21 +0300, Al Boldi said: > > It probably goes without saying, that gitfs should have some basic > > configuration file to setup its transparent behaviour > > But then it's not *truly* transparent, is it? Don't

Re: git guidance

2007-12-07 Thread Al Boldi
[EMAIL PROTECTED] wrote: > On Fri, 07 Dec 2007 22:04:48 +0300, Al Boldi said: > > Because WORKFLOW C is transparent, it won't affect other workflows. So > > you could still use your normal WORKFLOW B in addition to WORKFLOW C, > > gaining an additional level of version

Re: git guidance

2007-12-07 Thread Al Boldi
Jakub Narebski wrote: > Al Boldi <[EMAIL PROTECTED]> writes: > > For example: > > > > echo "// last comment on this file" >> /gitfs.mounted/file > > > > should do an implied checkpoint, and make these checkpoints immediately > >

konqueror deadlocks on 2.6.22

2008-01-19 Thread Al Boldi
I was just attacked by some deadlock issue involving sqlite3 and konqueror. While sqlite3 continues to slowly fill a 7M-record db in transaction mode, konqueror hangs for a few minutes, then continues only to hang again and again. Looks like an fs/blockIO issue involving fsync. As a workaround,

Re: konqueror deadlocks on 2.6.22

2008-01-19 Thread Al Boldi
Oliver Pinter (Pintér Olivér) wrote: > This kernel is vanilla 2.6.22.y or with CFS? Yes with CFSv20.4, as in the log. It also hangs on 2.6.23.13 > On 1/19/08, Al Boldi <[EMAIL PROTECTED]> wrote: > > I was just attacked by some deadlock issue involving sqlite3 and > >

Re: konqueror deadlocks on 2.6.22

2008-01-19 Thread Al Boldi
Mike Galbraith wrote: > On Sat, 2008-01-19 at 21:14 +0300, Al Boldi wrote: > > I was just attacked by some deadlock issue involving sqlite3 and > > konqueror. While sqlite3 continues to slowly fill a 7M-record db in > > transaction mode, konqueror hangs for a few minutes

Re: konqueror deadlocks on 2.6.22

2008-01-22 Thread Al Boldi
Ingo Molnar wrote: > * Oliver Pinter (Pintér Olivér) <[EMAIL PROTECTED]> wrote: > > and then please update to CFS-v24.1 > > http://people.redhat.com/~mingo/cfs-scheduler/sched-cfs-v2.6.22.15-v24.1 > >.patch > > > > > Yes with CFSv20.4, as in the log. > > > > > > It also hangs on 2.6.23.13 > > my fe

Re: konqueror deadlocks on 2.6.22

2008-01-22 Thread Al Boldi
Chris Mason wrote: > Running fsync in data=ordered means that all of the dirty blocks on the FS > will get written before fsync returns. Hm, that's strange, I expected this kind of behaviour from data=journal. data=writeback should return immediatly, which seems it does, but data=ordered should

[RFC] ext3: per-process soft-syncing data=ordered mode

2008-01-24 Thread Al Boldi
Greetings! data=ordered mode has proven reliable over the years, and it does this by ordering filedata flushes before metadata flushes. But this sometimes causes contention in the order of a 10x slowdown for certain apps, either due to the misuse of fsync or due to inherent behaviour like db's

Re: [PATCH] Reserve N process to root

2007-10-11 Thread Al Boldi
this DoS, but, as usual, it wasn't accepted. Go figure... Here is an excerpt: Re: [PATCH 1/1] threads_max: Simple lockout prevention patch From: Al Boldi <[EMAIL PROTECTED]> To: Andrew Morton <[EMAIL PROTECTED]> CC: linux-kernel@vger.kernel.org Date: 04/24/06 02:12 pm And

[RFD] iptables: mangle table obsoletes filter table

2007-10-11 Thread Al Boldi
With the existence of the mangle table, how useful is the filter table? Other than requiring the REJECT target to be ported to the mangle table, is the filter table faster than the mangle table? If not, then shouldn't the filter table be obsoleted to avoid confusion? Thanks! -- Al - To unsub

Re: [RFD] iptables: mangle table obsoletes filter table

2007-10-11 Thread Al Boldi
Patrick McHardy wrote: > Please send mails discussing netfilter to netfilter-devel. Ok. I just found out this changed to vger. But [EMAIL PROTECTED] is bouncing me. > Al Boldi wrote: > > With the existence of the mangle table, how useful is the filter table? > > > >

Re: [PATCH] Reserve N process to root

2007-10-11 Thread Al Boldi
Kyle Moffett wrote: > Please don't trim CC lists > > On Oct 11, 2007, at 17:02:37, Al Boldi wrote: > > David Newall wrote: > >> [EMAIL PROTECTED] wrote: > >>> What David meant was that "root will always have a slot" doesn't > >>

[RFC] USB Kconfig: Declutter USB Kconfig Menu

2007-12-21 Thread Al Boldi
The current USB Kconfig menu is rather cluttered and unorganized. Propose new layout as follows: l USB support qk x Arrow keys navigate the menu. selects submenus --->. Highlighted letters x x are hotkeys. P

Re: [RFC] USB Kconfig: Declutter USB Kconfig Menu

2007-12-21 Thread Al Boldi
David Brownell wrote: > > > The driver stacks are independent of each other, except for common > > > data structures like what's in the header file. I > > > think there's no real point, other than history, to having both sides > > > share the same menu. > > > > They aren't. > > How can you say th

Re: [RFC] USB Kconfig: Declutter USB Kconfig Menu

2007-12-22 Thread Al Boldi
David Brownell wrote: > > > Which is why my suggestion was to have them both move up a level, with > > > host and peripheral side menus nested normally: > > > > > > Device Drivers: > > > ... > > > [ ] HID devices > > > < > Host side USB > > > < > Peripheral

[PATCH] USB Kconfig: Reorganize USB Kconfig Menu

2007-12-23 Thread Al Boldi
Reogranize USB Kconfig Menu, and move USB_GADGET out into the Device Driver Menu. This helps the USB Kconfig Menu to be more logical/usable. Cc: David Brownell <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Cc: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Al Boldi

Re: [PATCH] USB Kconfig: Reorganize USB Kconfig Menu

2007-12-23 Thread Al Boldi
Jan Engelhardt wrote: > On Dec 23 2007 14:49, Al Boldi wrote: > >--- 23.a/drivers/usb/Kconfig > >+++ 23.b/drivers/usb/Kconfig > >@@ -2,8 +2,8 @@ > > # USB device configuration > > # > > > >-menuconfig USB_SUPPORT > >-bool "USB support

Re: [PATCH] USB Kconfig: Reorganize USB Kconfig Menu

2007-12-30 Thread Al Boldi
Adrian Bunk wrote: > On Thu, Dec 27, 2007 at 02:18:58PM -0800, David Brownell wrote: > > Also, looking at this in xconfig shows some oddness. That "core" > > submenu holds stuff that would logically be part of the toplevel > > menu for host side USB. While that toplevel menu has the USS720 > > dr

Re: git guidance

2007-11-28 Thread Al Boldi
Willy Tarreau wrote: > It should not turn into an endless thread led by people who want to > redefine GIT's roadmap, but experience sharing helps a lot with GIT. Well, now that you mentioned it, if there is one thing I dislike, it's for version control to start mutilating your sources. Version C

Re: git guidance

2007-11-28 Thread Al Boldi
Johannes Schindelin wrote: > Hi, Hi! [EMAIL PROTECTED] sometimes bounces, so let's leave lkml as backup. > On Wed, 28 Nov 2007, Rogan Dawes wrote: > > Al Boldi wrote: > > > Willy Tarreau wrote: > > > > It should not turn into an endless thread led by peo

Re: git guidance

2007-11-28 Thread Al Boldi
Johannes Schindelin wrote: > By that definition, no SCM, not even CVS, is transparent. Nothing short > of unpacked directories of all versions (wasting a lot of disk space) > would. Who said anything about unpacking? I'm talking about GIT transparently serving a Virtual Version Control dir to b

Re: git guidance

2007-11-28 Thread Al Boldi
Jakub Narebski wrote: > Al Boldi wrote: > > Johannes Schindelin wrote: > >> By that definition, no SCM, not even CVS, is transparent. Nothing > >> short of unpacked directories of all versions (wasting a lot of disk > >> space) would. > > > > Who sa

Re: git guidance

2007-11-30 Thread Al Boldi
Jing Xue wrote: > Quoting Al Boldi <[EMAIL PROTECTED]>: > > Sure, browsing is the easy part, but Version Control starts when things > > become writable. > > But how is that supposed to work? What happens when you make some > changes to a file and save it? Do you

Re: [2.6 patch] make I/O schedulers non-modular

2007-11-25 Thread Al Boldi
Jens Axboe wrote: > On Sun, Nov 25 2007, Adrian Bunk wrote: > > Is there any technical reason why we need 4 different schedulers at all? > > Until we have the perfect scheduler :-) > > With some hard work and testing, we should be able to get rid of 'as'. > It still beats cfq for some of the worklo

Re: [2.6 patch] make I/O schedulers non-modular

2007-11-25 Thread Al Boldi
Andrew Morton wrote: > (cc's lovingly restored. Please do not do that) Thanks! I'm replying off list. > On Mon, 26 Nov 2007 07:57:00 +0300 Al Boldi <[EMAIL PROTECTED]> wrote: > > Jens Axboe wrote: > > > On Sun, Nov 25 2007, Adrian Bunk wrote: > > >

Re: [RFD] Incremental fsck

2008-01-12 Thread Al Boldi
Bodo Eggert wrote: > Al Boldi <[EMAIL PROTECTED]> wrote: > > Even after a black-out shutdown, the corruption is pretty minimal, using > > ext3fs at least. So let's take advantage of this fact and do an > > optimistic fsck, to assure integrity per-dir, and assume n

Re: [PATCH 0/5] USB Kconfig: Reorganize USB Kconfig Menu

2008-01-12 Thread Al Boldi
Greg KH wrote: > On Sat, Jan 05, 2008 at 06:40:38PM +0300, Al Boldi wrote: > > Reorganize USB Kconfig Menu, and move USB_GADGET out into the Device > > Driver Menu. ?This helps the USB Kconfig Menu to be more logical/usable. > > > > Patchset against 2.6.23 > > So w

Re: [RFD] Incremental fsck

2008-01-13 Thread Al Boldi
Theodore Tso wrote: > On Wed, Jan 09, 2008 at 02:52:14PM +0300, Al Boldi wrote: > > Ok, but let's look at this a bit more opportunistic / optimistic. > > > > Even after a black-out shutdown, the corruption is pretty minimal, using > > ext3fs at least. > >

Re: [PATCH 0/5] USB Kconfig: Reorganize USB Kconfig Menu

2008-01-13 Thread Al Boldi
Greg KH wrote: > On Sat, Jan 12, 2008 at 01:20:46PM +0300, Al Boldi wrote: > > Greg KH wrote: > > > On Sat, Jan 05, 2008 at 06:40:38PM +0300, Al Boldi wrote: > > > > Reorganize USB Kconfig Menu, and move USB_GADGET out into the Device > > > > Driver Me

Re: [PATCH 0/5] USB Kconfig: Reorganize USB Kconfig Menu

2008-01-14 Thread Al Boldi
Stefan Richter wrote: > Greg KH wrote: > > On Sat, Jan 12, 2008 at 01:20:46PM +0300, Al Boldi wrote: > >> Greg KH wrote: > >>> On Sat, Jan 05, 2008 at 06:40:38PM +0300, Al Boldi wrote: > >>>> Reorganize USB Kconfig Menu, and move USB_GADGET out into t

Re: [patch 1/2] [RFC] Simple tamper-proof device filesystem.

2007-12-17 Thread Al Boldi
Indan Zupancic wrote: > On Mon, December 17, 2007 01:40, Tetsuo Handa wrote: > > So, use of this filesystem alone is meaningless because > > attackers with root privileges can do what you are saying. > > But use of this filesystem with MAC is still valid because > > MAC can prevent attackers with r

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-01-25 Thread Al Boldi
Chris Snook wrote: > Al Boldi wrote: > > Greetings! > > > > data=ordered mode has proven reliable over the years, and it does this > > by ordering filedata flushes before metadata flushes. But this > > sometimes causes contention in the order of a 10x slowdown fo

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-01-25 Thread Al Boldi
Jan Kara wrote: > > Greetings! > > > > data=ordered mode has proven reliable over the years, and it does this > > by ordering filedata flushes before metadata flushes. But this > > sometimes causes contention in the order of a 10x slowdown for certain > > apps, either due to the misuse of fsync or

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-01-25 Thread Al Boldi
Diego Calleja wrote: > El Thu, 24 Jan 2008 23:36:00 +0300, Al Boldi <[EMAIL PROTECTED]> escribió: > > Greetings! > > > > data=ordered mode has proven reliable over the years, and it does this > > by ordering filedata flushes before metadata flushes. But this >

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-01-25 Thread Al Boldi
[EMAIL PROTECTED] wrote: > On Thu, 24 Jan 2008 23:36:00 +0300, Al Boldi said: > > This RFC proposes to introduce a tunable which allows to disable fsync > > and changes ordered into writeback writeout on a per-process basis like > > this: : : > But if you want to give t

Kernel Event Notifications (was: [RFC] Parallelize IO for e2fsck)

2008-01-26 Thread Al Boldi
KOSAKI Motohiro wrote: > > > And from a performance point of view letting applications voluntarily > > > free some memory is better even than starting to swap. > > > > Absolutely. > > the mem_notify patch can realize "just before starting swapping" > notification :) > > to be honest, I don't know f

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-01-28 Thread Al Boldi
Jan Kara wrote: > On Sat 26-01-08 08:27:59, Al Boldi wrote: > > Do you mean there is a locking problem? > > No, but if you write to an mmaped file, then we can find out only later > we have dirty data in pages and we call writepage() on behalf of e.g. > pdflush(). Ok,

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-01-29 Thread Al Boldi
Jan Kara wrote: > > Chris Snook wrote: > > > Al Boldi wrote: > > > > This RFC proposes to introduce a tunable which allows to disable > > > > fsync and changes ordered into writeback writeout on a per-process > > > > basis like this: > >

Re: [RFC] ext3: per-process soft-syncing data=ordered mode

2008-01-30 Thread Al Boldi
Chris Mason wrote: > On Wednesday 30 January 2008, Al Boldi wrote: > > Jan Kara wrote: > > > > Chris Snook wrote: > > > > > Al Boldi wrote: > > > > > > This RFC proposes to introduce a tunable which allows to disable > > &g

top lies ?

2007-11-12 Thread Al Boldi
kloczek wrote: > Some data showed by top command looks like completly trashed. > Fragment from top output: > > Mem: 2075784k total, 2053352k used,22432k free,19260k buffers > Swap: 2096472k total, 136k used, 2096336k free, 1335080k cached > >PID USER PR NI VIRT RES S

Re: top lies ?

2007-11-12 Thread Al Boldi
Balbir Singh wrote: > On Nov 13, 2007 12:38 PM, Al Boldi <[EMAIL PROTECTED]> wrote: > > kloczek wrote: > > > Some data showed by top command looks like completly trashed. > > > Fragment from top output: > > > > > > Mem: 2075784k total, 2053352k

Re: mm snapshot broken-out-2007-11-13-04-14.tar.gz uploaded

2007-11-13 Thread Al Boldi
akpm wrote: > The mm snapshot broken-out-2007-11-13-04-14.tar.gz has been uploaded to Snapshots? Is this something new I missed? Can you elaborate? > It contains the following patches against 2.6.24-rc2: It maybe useful to also post this against the latest stable kernel. And a tool that may s

Re: mm snapshot broken-out-2007-11-13-04-14.tar.gz uploaded

2007-11-13 Thread Al Boldi
Peter Zijlstra wrote: > On Tue, 2007-11-13 at 18:21 +0300, Al Boldi wrote: > > akpm wrote: > > > The mm snapshot broken-out-2007-11-13-04-14.tar.gz has been uploaded > > > to > > > > Snapshots? Is this something new I missed? Can you elaborate? > > S

Re: mm snapshot broken-out-2007-11-13-04-14.tar.gz uploaded

2007-11-13 Thread Al Boldi
[EMAIL PROTECTED] wrote: > On Tue, 13 Nov 2007 19:42:10 +0300, Al Boldi said: > > Oh. What about breaking out a stable-mm snapshot against the latest > > stable kernel? > > You can roll your own of those. > > Get a 2.6.23.N kernel tarball. > patch -R the 23.N patch a

[PATCH][retry-2] init: Introduce rootdir bootparm to select which dir to sys_chroot

2007-11-18 Thread Al Boldi
installed on the same fs/partition. Cc: H. Peter Anvin <[EMAIL PROTECTED]> Cc: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Al Boldi <[EMAIL PROTECTED]> --- --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt @@ -1506,6 +1506,10 @@ and is be

Re: [PATCH][retry-2] init: Introduce rootdir bootparm to select which dir to sys_chroot

2007-11-18 Thread Al Boldi
H. Peter Anvin wrote: > a. For as long as we keep throwing more crap into the kernel, kinit will > not get merged, because it "provides no new functionality." I'm not really familiar with kinit, but it sounds unfair to hinder new features because it would reduce the usefulness of another project.

Re: [PATCH][retry-2] init: Introduce rootdir bootparm to select which dir to sys_chroot

2007-11-18 Thread Al Boldi
Arjan van de Ven wrote: > to be honest, this is something that really should be done in the > initramfs image; we should strive to keep the more complex bootup > scenarios there and not inside the kernel bootup code... Agreed, but this is neither complex nor is it a scenario. This is a shortcut.

Re: Hibernation considerations

2007-07-19 Thread Al Boldi
Rafael J. Wysocki wrote: > On Wednesday, 18 July 2007 16:29, Alan Stern wrote: > > > > Never mind. It seems clear that this approach will suffer the same > > drawback as the proposal for removing the freezer from the > > suspend-to-RAM pathway. Namely, device drivers will have to be changed > > t

[RFH] Partion table recovery

2007-07-19 Thread Al Boldi
As always, a good friend of mine managed to scratch my partion table by cat'ing /dev/full into /dev/sda. I was able to push him out of the way, but at least the first 100MB are gone. I can probably live without the first partion, but there are many partitions after that, which I hope should e

Re: [RFH] Partition table recovery

2007-07-20 Thread Al Boldi
Jan Engelhardt wrote: > On Jul 20 2007 07:35, Willy Tarreau wrote: > >On Fri, Jul 20, 2007 at 08:13:03AM +0300, Al Boldi wrote: > >> As always, a good friend of mine managed to scratch my partion table by > >> cat'ing /dev/full into /dev/sda. I was able to push

Re: [RFH] Partition table recovery

2007-07-20 Thread Al Boldi
Jeffrey V. Merkey wrote: > Al Boldi wrote: > >As always, a good friend of mine managed to scratch my partion table by > >cat'ing /dev/full into /dev/sda. I was able to push him out of the way, > > but at least the first 100MB are gone. I can probably live without the &g

Re: [RFH] Partition table recovery

2007-07-20 Thread Al Boldi
James Lamanna wrote: > On 7/19/07, Al Boldi <[EMAIL PROTECTED]> wrote: > > As always, a good friend of mine managed to scratch my partion table by > > cat'ing /dev/full into /dev/sda. I was able to push him out of the way, > > but at least the first 100MB are go

  1   2   3   4   >