search for: btrfs_init_cachep

Displaying 2 results from an estimated 2 matches for "btrfs_init_cachep".

2007 Nov 06
0
[PATCH] check return value in extent map allocation
...all_trees(struct extent_map_tree *tree); int set_extent_uptodate(struct extent_map_tree *tree, u64 start, u64 end, diff -r 29b8cc7794ac super.c --- a/super.c Thu Sep 20 14:14:42 2007 -0400 +++ b/super.c Tue Nov 06 19:06:04 2007 -0500 @@ -345,7 +345,9 @@ static int __init init_btrfs_fs(void) err = btrfs_init_cachep(); if (err) return err; - extent_map_init(); + err = extent_map_init(); + if (err) + return err; return register_filesystem(&btrfs_fs_type); }
2011 Oct 04
68
[patch 00/65] Error handling patchset v3
Hi all - Here''s my current error handling patchset, against 3.1-rc8. Almost all of this patchset is preparing for actual error handling. Before we start in on that work, I''m trying to reduce the surface we need to worry about. It turns out that there is a ton of code that returns an error code but never actually reports an error. The patchset has grown to 65 patches. 46 of them