linux-kernel mailing list

FromSubjectsort iconDate
Robert Hancock
Re: [BUG? -rc7] SMP: Just one CPU activated: P4 3GHz HT
You didn't enable ACPI, it's needed for almost all systems to detect HT and also for many systems to detect multi-cores as well. Aside from that, in general I would say that on any modern x86 system ACPI should always be enabled. In many cases it seems the BIOS code is not tested much without ACPI anymore, so going without ACPI can be problematic. -- Robert Hancock Saskatoon, SK, Canada To email, remove "nospam" from hancockr@nospamshaw.ca Home Page: http://www.roberthancock.com/ ...
Apr 22, 7:50 pm 2007
Andi Kleen
reiserfs lockdep warning in 2.6.21-rc5
======================================================= [ INFO: possible circular locking dependency detected ] 2.6.21-rc5-git6 #44 ------------------------------------------------------- perl/7968 is trying to acquire lock: (&inode->i_mutex){--..}, at: [<ffffffff802ca7cd>] reiserfs_file_release+0x109/0x2cc but task is already holding lock: (&mm->mmap_sem){----}, at: [<ffffffff8026b36a>] sys_munmap+0x32/0x5a which lock already depends on the new lock. the exi...
Apr 22, 7:44 pm 2007
Andi Kleen
More reiserfs trouble in 2.6.21-rc5
FYI, This was a debugging kernel (preempt, slab debugging, lockdep etc. enabled) running autotest and some other load on a 4 core Opteron system There was also another lockdep warning before that which I'm sending separately. Looks like some memory corruption. Could be something else, but at least reiserfs is the messenger. BTW these kind of backtraces are a good example on why I want the dwarf2 unwinder back. -Andi ------------[ cut here ]------------ kernel BUG at /mnt/dm-2/newaut...
Apr 22, 7:44 pm 2007
William Heimbigner
BUG: Null pointer dereference (2.6.21-rc7)
On running "pktsetup 0 /dev/hdd", I get the following: [ 3970.461403] ============================================= [ 3970.482051] [ INFO: possible recursive locking detected ] [ 3970.498210] 2.6.21-rc7 #2 [ 3970.506062] --------------------------------------------- [ 3970.522228] vol_id/8686 is trying to acquire lock: [ 3970.536576] (&bdev->bd_mutex){--..}, at: [<c01826b2>] do_open+0x65/0x285 [ 3970.557104] [ 3970.557109] but task is already holding lock: [ 3970.574627] (&bdev...
Apr 22, 7:13 pm 2007
Adrian Bunk
Linux 2.6.16.49
Location: ftp://ftp.kernel.org/pub/linux/kernel/v2.6/ git tree: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-2.6.16.y.git RSS feed of the git tree: http://www.kernel.org/git/?p=linux/kernel/git/stable/linux-2.6.16.y.git;a=rss Changes since 2.6.16.48: Adrian Bunk (2): Linux 2.6.16.49-rc1 Linux 2.6.16.49 Ard van Breemen (1): start_kernel: test if irq's got enabled early, barf, and disable them again Aristeu Sergio Rozanski Filho (1): tty_io: fix...
Apr 22, 7:14 pm 2007
Randy Dunlap Apr 22, 7:04 pm 2007
Matthias Kaehlcke
[PATCH] use spinlock instead of binary mutex in idt77252 dri...
use spinlock instead of binary mutex in idt77252 driver Signed-off-by: Matthias Kaehlcke <matthias.kaehlcke@gmail.com> -- diff --git a/drivers/atm/idt77252.c b/drivers/atm/idt77252.c index b4b8014..e3cf141 100644 --- a/drivers/atm/idt77252.c +++ b/drivers/atm/idt77252.c @@ -2430,7 +2430,7 @@ idt77252_open(struct atm_vcc *vcc) set_bit(ATM_VF_ADDR, &vcc->flags); - down(&card->mutex); + mutex_lock(&card->mutex); OPRINTK("%s: opening vpi.vci: %d.%d\n", c...
Apr 22, 5:39 pm 2007
Satyam Sharma
Re: [PATCH] use spinlock instead of binary mutex in idt77252...
Note that you're actually replacing a semaphore with a mutex here (and not a mutex with a spinlock). I guess that should be fine and desirable as long as the semaphore was indeed being used a mutex (binary) in this code. -
Apr 22, 7:52 pm 2007
Kyle Moffett
Re: [PATCH] use spinlock instead of binary mutex in idt77252...
I think you really meant: "Use mutex instead of binary semaphore in idt77252 driver", since this is a binary semaphore (not a mutex, Everything else looks good though Cheers, Kyle Moffett -
Apr 22, 7:50 pm 2007
Matthias Kaehlcke
[PATCH] use spinlock instead of binary mutex in CDU-31A driver
use spinlock instead of binary mutex in CDU-31A driver Signed-off-by: Matthias Kaehlcke <matthias.kaehlcke@gmail.com> -- diff --git a/drivers/cdrom/cdu31a.c b/drivers/cdrom/cdu31a.c index 2157c58..d3649e4 100644 --- a/drivers/cdrom/cdu31a.c +++ b/drivers/cdrom/cdu31a.c @@ -263,7 +263,7 @@ static int sony_toc_read = 0; /* Has the TOC been read for static struct s_sony_subcode last_sony_subcode; /* Points to the last subcode address read */ -static DECLARE_MUTEX(sony_sem);...
Apr 22, 5:35 pm 2007
Andi Kleen
Re: [PATCH] use spinlock instead of binary mutex in CDU-31A ...
That's not a spinlock. Also normally some rationale is added to the description for a change? -Andi -
Apr 22, 7:25 pm 2007
Jiri Slaby
[PATCH 1/1] Char: icom, mark __init as __devinit
icom, mark __init as __devinit Two functions are called from __devinit context, but they are marked as __init. Fix this. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> --- commit 257f51b72348e8879e8ef397f82e1408233843c1 tree 79a82d6c884adc7b941773929c92d269a9b91679 parent 6f42cfdf174bdd2c05edf7d192713042bf25339c author Jiri Slaby <jirislaby@gmail.com> Sun, 22 Apr 2007 23:29:21 +0200 committer Jiri Slaby <jirislaby@gmail.com> Sun, 22 Apr 2007 23:29:21 +0200 drivers/seria...
Apr 22, 5:32 pm 2007
Karuna sagar K
Testing framework
Hi, For some time I had been working on this file system test framework. Now I have a implementation for the same and below is the explanation. Any comments are welcome. Introduction: The testing tools and benchmarks available around do not take into account the repair and recovery aspects of file systems. The test framework described here focuses on repair and recovery capabilities of file systems. Since most file systems use 'fsck' to recover from file system inconsistencies, the test framewo...
Apr 22, 4:46 pm 2007
Karuna sagar K
ChunkFS - measuring cross-chunk references
Hi, The attached code contains program to estimate the cross-chunk references for ChunkFS file system (idea from Valh). Below are the results: test on ext3, / partition-1 on 27 March 2007 Number of files = 217806 Number of directories = 24295 Total size = 8193116 KB Total data stored = 7557892 KB Size of block groups = 131072 KB Number of inodes per block group = 16288 Total no. of cross references = 60657 ------------------------------------------------ test on ext3, / partition-1 on 22 Ma...
Apr 22, 4:35 pm 2007
Amit Gud
Re: ChunkFS - measuring cross-chunk references
Nice to see some numbers! But would be really nice to know: - what the chunk size is - how the files were created or, more vaguely, how 'aged' the fs is - what is the chunk allocation algorithm Best, AG -- May the source be with you. http://www.cis.ksu.edu/~gud -
Apr 22, 12:27 pm 2007
Mr. James W. Laferriere
CPU 3: Machine Check Exception: 0000000000000004
Hello All , Has anyone else had an occurance of this hard lockup . last time it was the scsi bus that was the last item on the console this time it's CPU #3 ... Everytime I try & run a bonnie on this system something locks the system up hard . I do not trust this system at this time & need to put it into production soon . Anybody any pointers where to look , ... ? Kernel: Linux 2.6.21-rc7 , unpatched . <<<previous>>> root@filesrv1b:~ # CPU 3: Mach...
Apr 22, 3:50 pm 2007
Vitaly Bordug
Fw: [PATCH][RFC] PCMCIA support for 8xx using platform devices
This utilizes PCMCIA on mpc885ads and mpc866ads from arch/powerpc. In the new approach, direct IMMR accesses from within drivers/ were totally eliminated, that requires hardware_enable, hardware_disable, voltage_set board-specific functions to be moved over to BSP code section (arch/powerpc/platforms/8xx in 885 case). There is just no way to have both arch/ppc and arch/powerpc approaches to work simultaneously because of that. It implies a bit of work to move other target's bits over to BSP region, bu...
Apr 22, 3:26 pm 2007
Arnd Bergmann
Re: Fw: [PATCH][RFC] PCMCIA support for 8xx using platform d...
Maybe I'm missing a key issue here, but what's the point of adding more platform_devices for stuff that is already in the device tree? Shouldn't this be made an of_platform_driver instead so you can use the existing of_device directly? Arnd <>< -
Apr 22, 5:49 pm 2007
Mikael Starvik
PATCH 2.6.20 14/14; CRIS architecture update - SPI
VGhlIGF0dGFjaGVkIHBhdGNoIGFkZHMgYSBDUklTIFNQSSBkcml2ZXINCiANClNpZ25lZC1vZmYt Ynk6IE1pa2FlbCBTdGFydmlrIDxzdGFydmlrQGF4aXMuY29tIDxtYWlsdG86c3RhcnZpa0BheGlz LmNvbT4gPg0KIA0KL01pa2FlbA0KIA0K
Apr 22, 3:26 pm 2007
Mikael Starvik
PATCH 2.6.20 11/14; CRIS architecture update - IDE driver
VGhlIGF0dGFjaGVkIHBhdGNoIHVwZGF0ZXMgdGhlIENSSVMgSURFIGRyaXZlci4NCiANClNpZ25l ZC1vZmYtYnk6IE1pa2FlbCBTdGFydmlrIDxzdGFydmlrQGF4aXMuY29tIDxtYWlsdG86c3RhcnZp a0BheGlzLmNvbT4gPg0KIA0KL01pa2FlbA0KIA0K
Apr 22, 3:26 pm 2007
Mikael Starvik
[PATCH 2.6.20 7/14] CRIS architecture update - Boot
VGhlIGF0dGFjaGVkIHBhdGNoIHJlbGF0ZXMgdG8gQ1JJUyBrZXJuZWwgYm9vdGluZyAoZGVjb21w cmVzc2VyIGV0YykNCiANClNpZ25lZC1vZmYtYnk6IE1pa2FlbCBTdGFydmlrIDxzdGFydmlrQGF4 aXMuY29tPg0KIA0KL01pa2FlbA0K
Apr 22, 3:25 pm 2007
Sam Ravnborg
Re: [PATCH 2.6.20 7/14] CRIS architecture update - Boot
--- ../linux/arch/cris/arch-v32/boot/compressed/Makefile 2007-02-04 19:44:54.000000000 +0100 +++ linux-2.6/arch/cris/arch-v32/boot/compressed/Makefile 2007-02-13 12:55:23.000000000 +0100 @@ -1,41 +1,30 @@ # -# lx25/arch/cris/arch-v32/boot/compressed/Makefile +# arch/cris/arch-v32/boot/compressed/Makefile # -# create a compressed vmlinux image from the original vmlinux files and romfs -# - -target = $(target_compressed_dir) -src = $(src_compressed_dir) -CC = gcc-cris -mlinux...
Apr 22, 3:45 pm 2007
Mikael Starvik
[PATCH 2.6.20 6/14] CRIS architecture update - Library
VGhlIGF0dGFjaGVkIHBhdGNoIHJlbGF0ZXMgdG8gQ1JJUyBsaWJyYXJ5IGZ1bmN0aW9ucw0KIA0K U2lnbmVkLW9mZi1ieTogTWlrYWVsIFN0YXJ2aWsgPHN0YXJ2aWtAYXhpcy5jb20+DQogDQovTWlr YWVsDQogDQo=
Apr 22, 3:25 pm 2007
Mikael Starvik
[PATCH 2.6.20 2/14] CRIS architecture update - subarchs
VGhlIGF0dGFjaGVkIHBhdGNoIGNvcnJlY3RzIGEgZmV3IHBhdGhzIHJlbGF0ZWQgdG8gc3ViLWFy Y2hpdGVjdHVyZXMuDQogDQpTaWduZWQtb2ZmLWJ5OiBNaWthZWwgU3RhcnZpayA8c3RhcnZpa0Bh eGlzLmNvbT4NCiANCi9NaWthZWwNCg==
Apr 22, 3:24 pm 2007
Mikael Starvik
[PATCH 2.6.20 3/14] CRIS architecture update - Configuration
VGhlIGF0dGFjaGVkIHBhdGNoIHJlbGF0ZXMgdG8gQ1JJUyBrZXJuZWwgY29uZmlndXJhdGlvbi4N CiANClNpZ25lZC1vZmYtYnk6IE1pa2FlbCBTdGFydmlrIDxzdGFydmlrQGF4aXMuY29tPg0KIA0K L01pa2FlbA0KIA0K
Apr 22, 3:24 pm 2007
Mikael Starvik
[PATCH 2.6.20 1/14] CRIS architecture update - Build system
VGhlIGF0dGFjaGVkIHBhdGNoIGltcHJvdmVzIHRoZSBDUklTIGJ1aWxkIHN5c3RlbSBieSBhbGxv d2luZyBvdXQtb2YtdHJlZSBvYmpkaXIgZXZlcnl3aGVyZQ0KIA0KU2lnbmVkLW9mZi1ieTogTWlr YWVsIFN0YXJ2aWsgPHN0YXJ2aWtAYXhpcy5jb20+DQogDQovTWlrYWVsDQo=
Apr 22, 3:24 pm 2007
Sam Ravnborg
Re: [PATCH 2.6.20 1/14] CRIS architecture update - Build sys...
I have browsed through the changes and this is in addition a much more readable set of Makefile's - good work! I stumbled over this: +AFLAGS = -traditional +LD = gcc-cris -mlinux -nostdlib +LDFLAGS = -T $(obj)/rescue.ld We have in i386 / x86_64 recently managed to get rid of -traditional. And it looks a bit strange that you use gcc as linker. Acked-by: Sam Ravnborg <sam@ravnborg.org> Sam -
Apr 22, 3:40 pm 2007
Parag Warudkar
Re: Sleep during spinlock in TPM driver
AFAICS, moving flush_scheduled_work before spin_lock() should not cause any problems. Reason being - The only thing that can race against tpm_release is tpm_open (tpm_release is called when last reference to the file is closed and only thing that can happen after that is tpm_open??) and tpm_open acquires driver_lock and more over it bails out with EBUSY if chip->num_opens is greater than 0. I also moved chip->num_pending-- to after deleting timer and setting data pending as it look...
Apr 22, 3:06 pm 2007
Rafael J. Wysocki
[PATCH -mm 0/3] Suspend notifiers
Hi, The last two patches from this series are intended to address the problem that some drivers allocate a lot of memory in their .suspend() routines causing swsusp to fail (and generally may want to do some things that shouldn't be done in .suspend()/.resume()). The first one is a fix. Greetings, Rafael -
Apr 22, 2:10 pm 2007
Rafael J. Wysocki
[PATCH -mm 3/3] PM: Introduce suspend notifiers (rev. 2)
From: Rafael J. Wysocki <rjw@sisk.pl> Make it possible to register suspend notifiers so that subsystems can perform suspend-related operations that should not be carried out by device drivers' .suspend() and .resume() routines. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> --- Documentation/power/suspend-notifiers.txt | 48 ++++++++++++++++++++++++++++ include/linux/notifier.h | 6 +++ include/linux/suspend.h | 27 +++++++++++++-- kernel/p...
Apr 22, 2:48 pm 2007
Rafael J. Wysocki
[PATCH -mm 2/3] swsusp: Free more memory
From: Rafael J. Wysocki <rjw@sisk.pl> Move the definition of PAGES_FOR_IO to kernel/power/power.h and introduce SPARE_PAGES representing the number of pages that should be freed by the swsusp's memory shrinker in addition to PAGES_FOR_IO so that device drivers can allocate some memory (up to 1 MB total) in their .suspend() routines without causing the suspend to fail. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> --- include/linux/suspen...
Apr 22, 2:14 pm 2007
Rafael J. Wysocki
[PATCH -mm 1/3] swsusp: Fix snapshot_release
From: Rafael J. Wysocki <rjw@sisk.pl> Remove the leftover enable_nonboot_cpus() from snapshot_release(). Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> --- kernel/power/user.c | 1 - 1 file changed, 1 deletion(-) Index: linux-2.6.21-rc6-mm1/kernel/power/user.c =================================================================== --- linux-2.6.21-rc6-mm1.orig/kernel/power/user.c 2007-04-22 19:55:59.000000000 +0200 +++ linux-2.6.21-rc6-mm1/kernel/power/user.c 2007-04-22 19:56:52.0...
Apr 22, 2:12 pm 2007
Sergei Shtylyov
[PATCH pata-2.6 fix queue] aec62xx: fix PIO/DMA setup issues
Teach the driver's tuneproc() method to do PIO auto-runing properly since it treated 5 instead of 255 as auto-tune request, and also passed the mode limit of PIO5 to ide_get_best_pio_mode() despite supporting up to PIO4 only. While at it, also: - remove the driver's wrong claim about supporting SWDMA modes; - stop hooking ide_dma_timeout() method as the handler clearly doesn't fit for the task... Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> --- Warning: the patch has o...
Apr 22, 2:05 pm 2007
Bodo Eggert
Re: Wrong free clusters count on FAT32
I simulated recalculating the FAT using a suboptimal perl script on my 32 GB FAT32 partition on a 40 GB drive. The results should show the worst case for my system. The results were below 2 seconds (optimized perl at 0.5 s) on my AMD Athlon XP 2400+. (BTW: I don't think the device speed itself will be relevant in many cases even if you'd asume a slow link, since you'll need to read the FAT anyway.) I think this is acceptable, and on this system, I'd like to enable recalculating by default. On ...
Apr 22, 1:21 pm 2007
OGAWA Hirofumi
Re: Wrong free clusters count on FAT32
dd will use readahead, and I'm thinking about usb. Well, anyway, recalc is default in new patch. Thanks. -- OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> -
Apr 22, 1:44 pm 2007
James Cloos
using the rt patch with rc7 (or git HEAD)
This recipe results in only two conflicts. The obvious and easily fixed EXTRAVERSION conflict as well as the conflict shown below from kernel/sched.c: #!/bin/sh git clone -n git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git 2.6.21-rc7-rt cd 2.6.21-rc7-rt git branch rc6 v2.6.21-rc6 git branch rc7 v2.6.21-rc7 git branch rc6-rt0 rc6 git checkout rc6-rt0 git pull git://people.freedesktop.org/~cloos/rt-2.6.git 2.6.21-rc6-rt0 git branch rc7-rt git checkout rc7-rt git pull . rc7 ...
Apr 22, 1:50 pm 2007
Sunil Naidu
Re: ACPI issues? (2.6.21-rc7 - dmesg, interrupts, lspci outp...
Attached all the above except acpidump - it says command not found !! ~Akula2
Apr 22, 1:06 pm 2007
Sunil Naidu
Re: ACPI issues? (2.6.20.7 dmesg, interrupts, lspci output)
Attached all the above except acpidump - it says command not found !! What is that am missing here? ~Akula2
Apr 22, 1:02 pm 2007
Willy Tarreau
Linux 2.4.35-pre4
I've just released Linux 2.4.35-pre4, previous one did not build. Thanks to Urs Thermann for reporting the problem (and fix). The patch and changelog will appear soon at the following locations: ftp://ftp.kernel.org/pub/linux/kernel/v2.4/testing/ ftp://ftp.kernel.org/pub/linux/kernel/v2.4/testing/patch-2.4.35-pre4.bz2 ftp://ftp.kernel.org/pub/linux/kernel/v2.4/testing/patch-2.4.35.log Git repository: git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/linux-2.4.git [ message continues ]
" title="http://www.ker...">http://www.ker...
Apr 22, 12:09 pm 2007
Willy Tarreau
Linux 2.4.34.4
I've just released Linux 2.4.34.4, previous one did not build. Thanks to Urs Thuermann for reporting the problem (and fix). The patch and changelog will appear soon at the following locations: ftp://ftp.kernel.org/pub/linux/kernel/v2.4/ ftp://ftp.kernel.org/pub/linux/kernel/v2.4/patch-2.4.34.4.bz2 ftp://ftp.kernel.org/pub/linux/kernel/v2.4/ChangeLog-2.4.34.4 Git repository: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-v2.4.34.y.git [ message continues ]
" title="http://www.kernel.org/pub/scm/linux/k...">http://www.kernel.org/pub/scm/linux/k...
Apr 22, 12:06 pm 2007
Con Kolivas
[ANNOUNCE] Staircase Deadline cpu scheduler version 0.46
Yet another significant bugfix for SMP balancing was just posted for the staircase deadline cpu scheduler which improves behaviour dramatically on any SMP machine. Thanks to Willy Tarreau for noticing more bugs. As requested was a version in the Makefile so this version of the patch adds -sd046 to the kernel version. http://ck.kolivas.org/patches/staircase-deadline/2.6.21-rc7-sd-0.46.patch http://ck.kolivas.org/patches/staircase-deadline/2.6.20.7-sd-0.46.patch Renicing X to -10, while not...
Apr 22, 11:03 am 2007
Thomas Backlund
Re: [ANNOUNCE] Staircase Deadline cpu scheduler version 0.46
This one broke 2.6.20.7 build... kernel/sched.c: In function ‘dependent_sleeper’: kernel/sched.c:3319: error: ‘DEF_TIMESLICE’ undeclared (first use in this function) kernel/sched.c:3319: error: (Each undeclared identifier is reported only once kernel/sched.c:3319: error: for each function it appears in.) -- Thomas Backlund <tmb@mandriva.org> -
Apr 22, 1:58 pm 2007
Con Kolivas Apr 22, 5:21 pm 2007
Con Kolivas
[PATCH] sched: implement staircase deadline scheduler load w...
The task load_weight needs to be set every time the quota is set and wasn't being set in activate_task which assumed it would not have changed. Due to changes in where the default rr_interval is set on SMP this assumption failed. Also if one were to change rr_interval on the fly it would break again. set_load_weight was unnecessarily complex in the relationship as it could be simply set to the task_timeslice in milliseconds. It also would not scale enough to pick up nice 19 tasks and could give the...
Apr 22, 10:47 am 2007
Thomas Meyer
[PATCH] i386-efi fix /proc/iomem type for kexec-tools
The kexec-tools check for "System RAM". diff --git a/arch/i386/kernel/efi.c b/arch/i386/kernel/efi.c index 8f9c624..307156d 100644 --- a/arch/i386/kernel/efi.c +++ b/arch/i386/kernel/efi.c @@ -638,8 +638,13 @@ efi_initialize_iomem_resources(struct resource *code_resource, res->name = "Runtime Service Data"; break; case EFI_CONVENTIONAL_MEMORY: - res->name = "Conventional Memory"; - break; + if (md->attribu...
Apr 22, 10:42 am 2007
Bodo Eggert
Re: Wrong free clusters count on FAT32
AFAIR it's stored twice on FAT32, once in a backup sector and once in the superblock or extended superblock (don't remember, I think it was the Windows _does_ care*, it will pretend the disk to be full. Therefore the stored value *SHOULD* be updated. (I think your patch does this.) Recalculating the free space is a nice idea, and modern hardware might be fast enough to recalculate the value on mount by default. (I didn't try this for years.) Maybe the default should depend on arch? About th...
Apr 22, 9:28 am 2007
DervishD
Re: Wrong free clusters count on FAT32
Hi Bodo :) I hadn't noticed the same problem with FAT16 pendrives, so I suspected that. Thanks for confirming :) Raúl Núñez de Arenas Coronado -- Linux Registered User 88736 | http://www.dervishd.net It's my PC and I'll cry if I want to... RAmen! -
Apr 22, 4:11 pm 2007
OGAWA Hirofumi
Re: Wrong free clusters count on FAT32
Did you test on 2000 or XP? (e.g. write 0 to free_clusters, then Um... why do we need to care about non-linux people in the patch? Sure. If you can post the patch, it'll be great. Thanks. -- OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> -
Apr 22, 10:04 am 2007
Bodo Eggert
Re: Wrong free clusters count on FAT32
Non-experts in Linux FAT implementation details. "recalc sounds like might take long, let's try to disable it" should be all it takes to get a fast mount. -- Top 100 things you don't want the sysadmin to say: 35. Ummm... Didn't you say you turned it off? -
Apr 22, 5:46 pm 2007
OGAWA Hirofumi
Re: Wrong free clusters count on FAT32
Updated patch is here. Thanks. -- OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> It seems that the recent Windows changed specification, and it's undocumented. Windows doesn't update ->free_clusters correctly. This patch doesn't use ->free_clusters by default. (instead, add "usefree" for forcing to use it) Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> --- Documentation/filesystems/vfat.txt | 7 +++++++ fs/fat/inode.c | 14 ++...
Apr 22, 10:29 am 2007
previous daytodaynext day
April 21, 2007April 22, 2007April 23, 2007