search for: extra_size

Displaying 4 results from an estimated 4 matches for "extra_size".

Did you mean: extra_isize
2006 May 22
1
[Xen-ia64-devel] RE: Re: [PATCH] Disable auto-balloon on ia64
...#39;'re two alternatives: - Keep the first piece of change on increase_reservation, which ensures all pages including extra spaces allocated immediately. - Pass the extra memory size to xen at arch_set_info_guest, and then change xen/ia64 to only tell domain maximum pfns as d->max_pages-extra_size Both need to be changed again later if balloon is ready. So I prefer to option I which is simpler and can help Alex to do sync quickly. How do you think? Thanks, Kevin _______________________________________________ Xen-ia64-devel mailing list Xen-ia64-devel@lists.xensource.com http://lists.xe...
2006 Jan 06
3
Flashing Window in Quicken
...us=0x10224, capture=(nil), active=0x2021e, foreground=(nil), menu_owner=(nil), move_size=(nil), caret=(nil), rect={0,0;0,0} } 000c: set_window_info( handle=0x20020, flags=00000000, style=00000000, ex_style=00000000, id=00000000, instance=(nil), is_unicode=0, user_data=(nil), extra_offset=-1, extra_size=0, extra_value=00000000 ) 000c: set_window_info() = 0 { old_style=96000000, old_ex_style=00000000, old_id=00000000, old_instance=(nil), old_user_data=(nil), old...
2013 Mar 15
0
[PATCH] Btrfs-progs: add skinny metadata support to progs V3
...int ret; int err = 0; + int skinny_metadata = + btrfs_fs_incompat(root->fs_info, + BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA); key.objectid = bytenr; key.type = BTRFS_EXTENT_ITEM_KEY; @@ -1034,11 +1042,44 @@ static int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, extra_size = btrfs_extent_inline_ref_size(want); else extra_size = -1; + + if (owner < BTRFS_FIRST_FREE_OBJECTID && skinny_metadata) { + skinny_metadata = 1; + key.type = BTRFS_METADATA_ITEM_KEY; + key.offset = owner; + } else if (skinny_metadata) { + skinny_metadata = 0; + } + +again: r...
2010 Sep 03
0
[PATCH 1/2] btrfs: document where we use BUG_ON instead of error handling
...e *block_group, size = end - start; total_added += size; ret = btrfs_add_free_space(block_group, start, size); - BUG_ON(ret); + btrfs_fixable_bug_on(ret); } return total_added; @@ -879,10 +879,10 @@ static int convert_extent_item_v0(struct btrfs_trans_handle *trans, new_size + extra_size, 1); if (ret < 0) return ret; - BUG_ON(ret); + btrfs_fixable_bug_on(ret); ret = btrfs_extend_item(trans, root, path, new_size); - BUG_ON(ret); + btrfs_fixable_bug_on(ret); leaf = path->nodes[0]; item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); @@ -1350,...