Displaying 3 results from an estimated 3 matches for "start_objectid".
2010 Dec 14
0
[PATCH] BTRFS_IOC_TREE_SEARCH: store and use the last key found
...quot;. In general the
values set are the last one returned "+1". But doing so we reduce the
"acceptance criteria window".
I propose to add three more fields in the struct btrfs_ioctl_search_key:
+ /* starting search key fields */
+ __u32 start_type;
+ __u64 start_objectid;
+ __u64 start_offset;
Is resposibility of the program to fill these fields during the begin of the
search. If these are 0, the code set these to the min_* values.
At the end of the search the kernel code stores the last key found + 1, in
accordance of the "acceptance criteria"....
2011 Jun 10
6
[PATCH v2 0/6] btrfs: generic readeahead interface
This series introduces a generic readahead interface for btrfs trees.
The intention is to use it to speed up scrub in a first run, but balance
is another hot candidate. In general, every tree walk could be accompanied
by a readahead. Deletion of large files comes to mind, where the fetching
of the csums takes most of the time.
Also the initial build-ups of free-space-caches and
2011 Jun 29
14
[PATCH v4 0/6] btrfs: generic readeahead interface
This series introduces a generic readahead interface for btrfs trees.
The intention is to use it to speed up scrub in a first run, but balance
is another hot candidate. In general, every tree walk could be accompanied
by a readahead. Deletion of large files comes to mind, where the fetching
of the csums takes most of the time.
Also the initial build-ups of free-space-caches and