Displaying 5 results from an estimated 5 matches for "btrfs_alloc_ext".
2008 Apr 10
1
fsfuzz testing: some results
...2c_i801
i2c_core ohci1394 iTCO_wdt pcspkr iTCO_vendor_support floppy
dm_snapshot dm_zero dm_mirror dm_mod ahci ata_piix libata dock sd_mod
scsi_mod ext3 jbd ehci_hcd ohci_hcd uhci_hcd
Pid: 213, comm: pdflush Not tainted (2.6.25-rc7 #3)
EIP: 0060:[<f8b936b3>] EFLAGS: 00010286 CPU: 1
EIP is at btrfs_alloc_extent+0xba/0x328 [btrfs]
EAX: ffffffe4 EBX: f2455730 ECX: c2017c88 EDX: 00000000
ESI: f3da7130 EDI: 00000000 EBP: f7945c64 ESP: f7945c20
DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068
Process pdflush (pid: 213, ti=f7945000 task=f79426e0 task.ti=f7945000)
Stack: f3d6b400 f2455730 f288c400 00000000 00000...
2008 Jan 17
1
Requirements for btrfs
.../muller/btrfs/btrfs-0.10/extent-tree.c:1651!
invalid opcode: 0000 [#1] PREEMPT SMP
Modules linked in: btrfs xt_mac xt_limit xt_multiport
ipt_owner ipaq usbserial nvidia(P)
Pid: 23376, comm: btrfs/0 Tainted: P
(2.6.24-rc8-fly #1)
EIP: 0060:[<f8d32c37>] EFLAGS: 00010286 CPU: 0
EIP is at btrfs_alloc_extent+0x447/0x450 [btrfs]
EAX: ffffffe4 EBX: dd41a758 ECX: c201179c EDX:
00000000
ESI: f5f93d50 EDI: ffffffe4 EBP: 00000000 ESP:
f7a91ce8
DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068
Process btrfs/0 (pid: 23376, ti=f7a90000 task=d8be9170
task.ti=f7a90000)
Stack: 00004000 00000000 00040000 00000000 00...
2009 Feb 26
2
BUG: Mount/Unmount Loop
...00000000002af5c8: c0f400000790 brcl 15,2b04e8
[ 121.451245] Call Trace:
[ 121.451255] ([<000003e000715e3e>] find_free_extent+0x236/0x784 [btrfs])
[ 121.451396] [<000003e0007164f0>] __btrfs_reserve_extent+0x164/0x314 [btrfs]
[ 121.451489] [<000003e0007184e2>] btrfs_alloc_extent+0x4e/0xc8 [btrfs]
[ 121.451583] [<000003e0007185c8>] btrfs_alloc_free_block+0x6c/0xb0 [btrfs]
[ 121.451676] [<000003e00070841a>] __btrfs_cow_block+0x242/0xa08 [btrfs]
[ 121.451766] [<000003e0007093e4>] btrfs_cow_block+0x220/0x234 [btrfs]
[ 121.451857] [<000003e000727...
2009 May 12
0
[PATCH 1/2] btrfs-progs: mixed back ref support
..., u64 parent,
- u64 root_objectid,
- u64 ref_generation,
- int level,
- u64 hint,
- u64 empty_size);
+ struct btrfs_root *root,
+ u32 blocksize, u64 root_objectid,
+ struct btrfs_disk_key *key, int level,
+ u64 hint, u64 empty_size);
int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
struct btrfs_root *root,
u64 num_bytes, u64 parent,
u64 root_objectid, u64 ref_generation,
u64 owner, u64 empty_size, u64 hint_byte,
u64 search_end, struct btrfs_key *ins, int data);
-int btrfs_lookup_extent_ref(...
2013 Mar 15
0
[PATCH] Btrfs-progs: add skinny metadata support to progs V3
...*disk_super;
+ disk_super = &fs_info->super_copy;
+ return !!(btrfs_super_incompat_flags(disk_super) & flag);
+}
+
/* helper function to cast into the data area of the leaf. */
#define btrfs_item_ptr(leaf, slot, type) \
((type *)(btrfs_leaf_data(leaf) + \
@@ -2055,10 +2070,10 @@ int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
u64 search_end, struct btrfs_key *ins, int data);
int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
struct btrfs_root *root, u64 bytenr,
- u64 num_bytes, u64 *refs, u64 *flags);
+ u64 offset, int metadata, u64 *refs...