login
Header Space

 
 

Mailing list archives

Search results

Found 187 matching messages (0.033 seconds). Page 1 of 10.

[PATCH 25/49] jbd2: Remove printk from J_ASSERT to preserve registers during BUG

... C. Tweedie" Cc: Theodore Ts'o Signed-off-by: Andrew ... Signed-off-by: "Theodore Ts'o" --- include/linux/jbd2.h | 16 +--------------- 1 files changed, 1 insertions(+), 15 ...

linux-kernel - Theodore Ts'o - Jan 21 2008 - 23:02

[PATCH] ext4: Replace use of iget() with iget_locked()

... . - Ted commit 46ea772acbda42780ae014e608f51e71083be46b Author: Theodore Ts'o Date: Sat ... () with iget_locked() Signed-off-by: "Theodore Ts'o" diff --git a/fs/ext4/ialloc.c b/ ...

linux-kernel - Theodore Ts'o - Feb 2 2008 - 11:55

[PATCH 41/49] ext4: Add multi block allocator for ext4

... .com> Signed-off-by: "Theodore Ts'o" --- fs/ ... ioctl.o namei.o super.o symlink.o hash.o resize. ... mounted the file system with -O + * stripe= option the group ... first_group + i); + } + + /* wait for I/O completion */ + for (i = 0; i ...

linux-kernel - Theodore Ts'o - Jan 21 2008 - 23:02

[PATCH 32/52] ext4: Documentation updates.

... .ibm.com> Signed-off-by: "Theodore Ts'o" --- Documentation/filesystems/ ... /dev/hda1 /wherever -t ext4dev -o extents + # tune2fs -I 256 /dev/hda1 ... -only journalling filesystem, use `mount -o - data=writeback'. And you might as ...

linux-kernel - Theodore Ts'o - Jul 5 2008 - 13:35

[PATCH 32/49] jbd2: jbd2 stats through procfs

... ->stats + s->start) + return NULL; + } + return ts; + +} + +static void *jbd2_seq_history_start(struct seq_file *seq, ... s->start, 1); + else + return jbd2_history_skip_empty(s, ++ts, 0); +} + +static int jbd2_seq_history_show(struct seq_file * ...

linux-kernel - Theodore Ts'o - Jan 21 2008 - 23:02

[PATCH, RFC] ext3: move headers out of include/linux

... lst.de> Signed-off-by: "Theodore Ts'o" --- fs/ext3 ... +#ifndef _LINUX_EXT2_FS_H +#define clear_opt(o, opt) o &= ~EXT3_MOUNT_##opt +#define set_opt(o, opt) o |= EXT3_MOUNT_##opt +#define test_opt(sb, opt) (EXT3_SB(sb)->s_mount_opt & ...

linux-kernel - Theodore Ts'o - May 1 2008 - 10:40

[PATCH] ext3/jbd: Avoid WARN() messages when failing to write to the superblock

... .org Signed-off-by: "Theodore Ts'o" --- fs/ext3/ ... (sbh)) { + printk(KERN_ERR "ext3: I/O error while writing " + "superblock for %s.\ ... (bh)) { + printk(KERN_ERR "JBD: I/O error detected " + "when updating journal ...

linux-kernel - Theodore Ts'o - Sep 20 2008 - 17:35

[PATCH, RFC] ext4: Use preallocation when reading from the inode table

... by 21%. Signed-off-by: "Theodore Ts'o" ---- Note: this ... stop needing to do any I/O, and we only try to do ... we need to do some I/O anyway. This patch also eliminates ext4_get_inode_block ... we need to do any I/O, try to readahead up to 16 ...

linux-kernel - Theodore Ts'o - Sep 22 2008 - 20:35

[PATCH 42/49] ext4: Enable the multiblock allocator by default

... .ibm.com> Signed-off-by: "Theodore Ts'o" --- fs/ext4/super.c | 7 +++++++ 1 files changed ... , void *data, int silent) * User -o noextents to turn it off ... by default in ext4 filesystem + * User -o nomballoc to turn it off + ...

linux-kernel - Theodore Ts'o - Jan 21 2008 - 23:02

[PATCH 51/52] ext4: Don't allow nonextenst mount option for large filesystem

... more than 2**32 blocks if the -o noextents option is given. Signed-off-by ... .ibm.com> Signed-off-by: "Theodore Ts'o" --- fs/ext4/ ... : Filesystem too " + "large to mount with " + "-o noextents options\n"); + return 0; + ...

linux-kernel - Theodore Ts'o - Jul 5 2008 - 13:36

[PATCH 39/52] ext4: Use new framework for data=ordered mode in JBD2

... .ibm.com> Signed-off-by: "Theodore Ts'o" --- fs/ext4/ ... modes block_write_full_page() will start the I/O. + * In all journaling modes block_write_full_page() will start the I/O. * * Problem: * @@ -1533,86 +1529,7 @@ static int ...

linux-kernel - Theodore Ts'o - Jul 5 2008 - 13:36

[PATCH 42/52] ext4: Add basic delayed allocation support

... Signed-off-by: Dave Kleikamp Signed-off-by: "Theodore Ts'o" Signed-off-by: Aneesh ... once */ #ifndef _LINUX_EXT2_FS_H #define clear_opt(o, opt) o &= ~EXT4_MOUNT_##opt diff --git a/fs/ext4/ ...

linux-kernel - Theodore Ts'o - Jul 5 2008 - 13:36

New ext4 patchset 2.6.26-rc8-ext4-1

... warning * ext4: Use inode preallocation with -o noextents * ext4: cleanup block allocator * ext4 ... * ext4: Fix ext4_ext_journal_restart() to reflect errors up to the caller Theodore Ts'o (5): * ext4: Rename read_block_bitmap() to ...

linux-kernel - Theodore Ts'o - Jul 5 2008 - 13:19

[PATCH 50/52] ext4: Enable delalloc by default.

... -by: Aneesh Kumar K.V Signed-off-by: "Theodore Ts'o" Signed-off-by: Mingming Cao ... /* + * enable delayed allocation by default + * Use -o nodelalloc to turn it off + */ + set_opt( ...

linux-kernel - Theodore Ts'o - Jul 5 2008 - 13:36

[PATCH 25/52] ext4: cleanup block allocator

... @us.ibm.com> Signed-off-by: "Theodore Ts'o" --- fs/ext4/balloc.c | 127 +++++++++++++++++++++++++++++++---------------------- fs/ext4/ext4.h ... + * This function is called when -o nomballoc mount option is enabled * ...

linux-kernel - Theodore Ts'o - Jul 5 2008 - 13:35

[PATCH 24/52] ext4: Use inode preallocation with -o noextents

... .com> Signed-off-by: Mingming Cao Signed-off-by: "Theodore Ts'o" --- fs/ext4/balloc.c | 36 +++++++++++++++++++++++++- fs/ext4/ext4.h | 7 +++- fs/ext4/extents.c | ...

linux-kernel - Theodore Ts'o - Jul 5 2008 - 13:35

[PATCH 35/52] ext4: Invert the locking order of page_lock and transaction start

... vnet.ibm.com> Signed-off-by: "Theodore Ts'o" --- fs/ext4/ext4.h | 4 +- fs/ext4/extents.c ... journalling modes block_write_full_page() will start the I/O. * @@ -1554,10 +1532,8 @@ static int jbd2_journal_dirty_data_fn ...

linux-kernel - Theodore Ts'o - Jul 5 2008 - 13:36

[PATCH 41/52] vfs: add basic delayed allocation support

... Signed-off-by: "Theodore Ts'o" --- fs/buffer.c | 7 +- fs/mpage.c | 405 ... complicated logic + * to deal with pages w/o PG_lock or w/ PG_writeback and so on. + * ...

linux-kernel - Theodore Ts'o - Jul 5 2008 - 13:36

New ext4 patchset 2.6.26-rc9-ext4-1

... warning * ext4: Use inode preallocation with -o noextents * ext4: cleanup block allocator * ext4 ... * ext4: Fix ext4_ext_journal_restart() to reflect errors up to the caller Theodore Ts'o (4): * ext4: Rename read_block_bitmap() to ...

linux-kernel - Theodore Ts'o - Jul 8 2008 - 23:09

New ext4 patchset 2.6.26-ext4-1

... warning * ext4: Use inode preallocation with -o noextents * ext4: cleanup block allocator * ext4: ... (1): * ext4: replace __FUNCTION__ occurrences Theodore Ts'o (4): * ext4: Rename read_block_bitmap() to ext4_read_block_bitmap() ...

linux-kernel - Theodore Ts'o - Jul 13 2008 - 21:52

speck-geostationary