search for: src_node

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

Did you mean: src_inode
2009 May 28
0
[PATCH server] Use qpid for migration and add more debugging to taskomatic.
...nect_storage_pools(dest_node, volumes) # Sadly migrate with qpid is broken because it requires a connection between # both nodes and currently that can't happen securely. For now we do it # the old fashioned way.. - src_conn = Libvirt::open("qemu+tcp://" + src_node.hostname + "/system") - dst_conn = Libvirt::open("qemu+tcp://" + dest_node.hostname + "/system") - dom = src_conn.lookup_domain_by_uuid(vm.uuid) - dom.migrate(dst_conn, Libvirt::Domain::MIGRATE_LIVE) - src_conn.close - dst_conn.close + src...
2007 Jun 20
4
custom menu plugin not working in 0.4.4
I was pushing out a new version of a site I have that I think was last generated with webgen 0.4.1. Since my gems are updated to 0.4.4 I''m getting this error when running ''webgen''. I''ve reverted back to 0.4.2 and that is the version where this custom vertical menu plugin starts breaking. So I''m not sure what has changed to cause this. I get this
2010 Jan 23
0
btrfsck failed
I tried an (offline) btrfsck and got the following error message: > btrfsck /dev/sdb3 btrfsck: btrfsck.c:584: splice_shared_node: Assertion `!(src == &src_node->root_cache)'' failed. Aborted I use kernel version 2.6.32.2 with builtin btrfs-drivers. Greetings, Michael -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kern...
2010 Feb 01
0
[PATCH] btrfsck: Remove superfluous WARN_ON
...s-progs-2/btrfsck.c --- btrfs-progs-unstable/btrfsck.c 2009-09-28 15:54:55.980479398 +0800 +++ btrfs-progs-2/btrfsck.c 2010-01-31 09:46:24.645485459 +0800 @@ -581,7 +581,6 @@ again: } ret = insert_existing_cache_extent(dst, &ins->cache); if (ret == -EEXIST) { - WARN_ON(src == &src_node->root_cache); conflict = get_inode_rec(dst, rec->ino, 1); merge_inode_recs(rec, conflict, dst); if (rec->checked) { -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at...
2011 Feb 09
1
warning in btrfs_free_block_groups
...ytes_reserved > 0) { WARN_ON(1); dump_space_info(space_info, 0, 0); } list_del(&space_info->list); kfree(space_info); } return 0; When I tried btrfsck, I get: btrfsck: btrfsck.c:584: splice_shared_node: Assertion `!(src == &src_node->root_cache)'' failed. I''m making heavy use of subvolume snapshots. The partition is being used for backups and I use ''rsync --inplace'' along with the CoW feature to preserve space. Regards, Neil -- To unsubscribe from this list: send the line "unsub...
2009 Nov 04
4
[PATCH server] Update daemons to use new QMF.
...ss TaskOmatic def migrate(db_vm, dest = nil) - vm = @session.object(:class => "domain", 'uuid' => db_vm.uuid) + vm = @qmfc.object(:class => "domain", 'uuid' => db_vm.uuid) raise "Unable to find VM to migrate" unless vm - src_node = @session.object(:object_id => vm.node) + src_node = @qmfc.object(:object_id => vm.node) raise "Unable to find node that VM is on??" unless src_node @logger.info "Migrating domain lookup complete, domain is #{vm}" @@ -528,7 +533,7 @@ class TaskOmatic...