search for: orhpan

Displaying 6 results from an estimated 6 matches for "orhpan".

2013 Dec 12
1
samba 4.2 - orphaned showrepl entries
Hi, i've still these orhpaned entries and don't know where to remove them. Samba-tool drs showrepl [.] CN=Configuration,DC=local,DC=laurenz,DC=ws NTDS DN: CN=NTDS Settings\0ADEL:262e2471-dc01-4d71-ae5d-f71f9d8c2d5d,CN=SHELBY\0ADEL:72a698fc -6b93-41d1-9961-504008ea2415,CN=Servers,CN=Zuhause,CN=Sites,CN...
2009 Nov 12
0
[PATCH 05/12] Btrfs: Avoid orphan inodes cleanup during replaying log
...em; u32 mode; @@ -1603,31 +1617,16 @@ static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb, eb, i, &key); BUG_ON(ret); - /* for regular files, truncate away - * extents past the new EOF + /* for regular files, make sure corresponding + * orhpan item exist. extents past the new EOF + * will be truncated later by orphan cleanup. */ if (S_ISREG(mode)) { - inode = read_one_inode(root, - key.objectid); - BUG_ON(!inode); - - ret = btrfs_truncate_inode_items(wc->trans, - root, inode, inode->i_size, -...
2011 Aug 23
40
[PATCH 00/21] [RFC] Btrfs: restriper
Hello, This patch series adds an initial implementation of restriper (it''s a clever name for relocation framework that allows to do selective profile changing and selective balancing with some goodies like pausing/resuming and reporting progress to the user. Profile changing is global (per-FS) so far, per-subvolume profiles require some discussion and can be implemented in future.
2010 Sep 03
0
[PATCH 1/2] btrfs: document where we use BUG_ON instead of error handling
...(wc->trans, root, log, path, key.objectid, 0); - BUG_ON(ret); + btrfs_fixable_bug_on(ret); } ret = overwrite_item(wc->trans, root, path, eb, i, &key); - BUG_ON(ret); + btrfs_fixable_bug_on(ret); /* for regular files, make sure corresponding * orhpan item exist. extents past the new EOF @@ -1628,12 +1628,12 @@ static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb, if (S_ISREG(mode)) { ret = insert_orphan_item(wc->trans, root, key.objectid); - BUG_ON(ret); + btrfs_fixable_bug_on(ret); }...
2003 Dec 01
0
No subject
...rg> List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>, <mailto:samba-request@lists.samba.org?subject=unsubscribe> List-Archive: http://lists.samba.org/pipermail/samba/ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, The /samba/survey and whishlist areas seem very orhpaned and out-dated (and the maintainer's home page address is 404, hence this message). Perhaps: - remove/hide until new maintain is found? - update them? The wish-list information is actually quite intresting. - -- James Preston james@mds.rmit.edu.au PG...
2011 Oct 06
26
[PATCH v0 00/18] btfs: Subvolume Quota Groups
This is a first draft of a subvolume quota implementation. It is possible to limit subvolumes and any group of subvolumes and also to track the amount of space that will get freed when deleting snapshots. The current version is functionally incomplete, with the main missing feature being the initial scan and rescan of an existing filesystem. I put some effort into writing an introduction into