* [PATCH] ext4: try fast merge operation in ext4_mb_free_metadata()
@ 2010-03-24 13:32 jing zhang
2010-03-24 17:04 ` Aneesh Kumar K. V
0 siblings, 1 reply; 3+ messages in thread
From: jing zhang @ 2010-03-24 13:32 UTC (permalink / raw)
To: linux-ext4; +Cc: Theodore Ts'o, Andreas Dilger, Dave Kleikamp
From: Jing Zhang <zj.barak@gmail.com>
Date: Wed Mar 24 21:30:22 2010
There may exist fast path for merge if merge-able.
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: Andreas Dilger <adilger@sun.com>
Cc: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Signed-off-by: Jing Zhang <zj.barak@gmail.com>
---
--- linux-2.6.32/fs/ext4/mballoc.c 2009-12-03 11:51:22.000000000 +0800
+++ ext4_mm_leak/mballoc7.c 2010-03-24 21:27:24.000000000 +0800
@@ -4385,6 +4385,24 @@ ext4_mb_free_metadata(handle_t *handle,
}
}
+ if (parent) {
+ /* let's try fast path */
+ entry = rb_entry(parent, struct ext4_free_data, node);
+ if (n == &parent->rb_left) {
+ if (can_merge(new_entry, entry)) {
+ entry->start_blk = new_entry->start_blk;
+ entry->count += new_entry->count;
+ /* and info the caller that new_entry is
+ * not used yet.
+ */
+ return 0;
+ }
+ }
+ else if (can_merge(entry, new_entry)) {
+ entry->count += new_entry->count;
+ return 0;
+ }
+ }
rb_link_node(new_node, parent, n);
rb_insert_color(new_node, &db->bb_free_root);
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ext4: try fast merge operation in ext4_mb_free_metadata()
2010-03-24 13:32 [PATCH] ext4: try fast merge operation in ext4_mb_free_metadata() jing zhang
@ 2010-03-24 17:04 ` Aneesh Kumar K. V
2010-03-25 14:11 ` jing zhang
0 siblings, 1 reply; 3+ messages in thread
From: Aneesh Kumar K. V @ 2010-03-24 17:04 UTC (permalink / raw)
To: jing zhang, linux-ext4; +Cc: Theodore Ts'o, Andreas Dilger, Dave Kleikamp
On Wed, 24 Mar 2010 21:32:39 +0800, jing zhang <zj.barak@gmail.com> wrote:
> From: Jing Zhang <zj.barak@gmail.com>
>
> Date: Wed Mar 24 21:30:22 2010
>
> There may exist fast path for merge if merge-able.
>
> Cc: Theodore Ts'o <tytso@mit.edu>
> Cc: Andreas Dilger <adilger@sun.com>
> Cc: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
> Signed-off-by: Jing Zhang <zj.barak@gmail.com>
>
> ---
>
> --- linux-2.6.32/fs/ext4/mballoc.c 2009-12-03 11:51:22.000000000 +0800
> +++ ext4_mm_leak/mballoc7.c 2010-03-24 21:27:24.000000000 +0800
> @@ -4385,6 +4385,24 @@ ext4_mb_free_metadata(handle_t *handle,
> }
> }
>
> + if (parent) {
> + /* let's try fast path */
> + entry = rb_entry(parent, struct ext4_free_data, node);
> + if (n == &parent->rb_left) {
> + if (can_merge(new_entry, entry)) {
> + entry->start_blk = new_entry->start_blk;
> + entry->count += new_entry->count;
> + /* and info the caller that new_entry is
> + * not used yet.
> + */
> + return 0;
return 0 on success so you may want -1 here
> + }
> + }
> + else if (can_merge(entry, new_entry)) {
> + entry->count += new_entry->count;
> + return 0;
> + }
> + }
> rb_link_node(new_node, parent, n);
> rb_insert_color(new_node, &db->bb_free_root);
> --
-aneesh
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ext4: try fast merge operation in ext4_mb_free_metadata()
2010-03-24 17:04 ` Aneesh Kumar K. V
@ 2010-03-25 14:11 ` jing zhang
0 siblings, 0 replies; 3+ messages in thread
From: jing zhang @ 2010-03-25 14:11 UTC (permalink / raw)
To: Aneesh Kumar K. V
Cc: linux-ext4, Theodore Ts'o, Andreas Dilger, Dave Kleikamp
2010/3/25, Aneesh Kumar K. V <aneesh.kumar@linux.vnet.ibm.com>:
> On Wed, 24 Mar 2010 21:32:39 +0800, jing zhang <zj.barak@gmail.com> wrote:
>> From: Jing Zhang <zj.barak@gmail.com>
>>
>> Date: Wed Mar 24 21:30:22 2010
>>
>> There may exist fast path for merge if merge-able.
>>
>> Cc: Theodore Ts'o <tytso@mit.edu>
>> Cc: Andreas Dilger <adilger@sun.com>
>> Cc: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
>> Signed-off-by: Jing Zhang <zj.barak@gmail.com>
>>
>> ---
>>
>> --- linux-2.6.32/fs/ext4/mballoc.c 2009-12-03 11:51:22.000000000 +0800
>> +++ ext4_mm_leak/mballoc7.c 2010-03-24 21:27:24.000000000 +0800
>> @@ -4385,6 +4385,24 @@ ext4_mb_free_metadata(handle_t *handle,
>> }
>> }
>>
>> + if (parent) {
>> + /* let's try fast path */
>> + entry = rb_entry(parent, struct ext4_free_data, node);
>> + if (n == &parent->rb_left) {
>> + if (can_merge(new_entry, entry)) {
>> + entry->start_blk = new_entry->start_blk;
>> + entry->count += new_entry->count;
>> + /* and info the caller that new_entry is
>> + * not used yet.
>> + */
>> + return 0;
>
> return 0 on success so you may want -1 here
Agree.
- zj
>
>> + }
>> + }
>> + else if (can_merge(entry, new_entry)) {
>> + entry->count += new_entry->count;
>> + return 0;
>> + }
>> + }
>> rb_link_node(new_node, parent, n);
>> rb_insert_color(new_node, &db->bb_free_root);
>> --
>
> -aneesh
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-03-25 14:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-24 13:32 [PATCH] ext4: try fast merge operation in ext4_mb_free_metadata() jing zhang
2010-03-24 17:04 ` Aneesh Kumar K. V
2010-03-25 14:11 ` jing zhang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).