Lines Matching defs:root

303 	TRACE("Volume::Mount() root: %lld (physical %lld)\n",
332 TRACE("Volume::Mount() root: %lld (physical %lld)\n",
344 TRACE("Volume::Mount(): Searching extent root\n");
349 struct btrfs_root *root;
350 if (fRootTree->FindNext(search_key, (void**)&root) != B_OK) {
351 ERROR("Volume::Mount(): Couldn't find extent root\n");
354 TRACE("Volume::Mount(): Found extent root: %lld\n", root->BlockNum());
355 fExtentTree = new(std::nothrow) BPlusTree(this, root->BlockNum());
356 free(root);
362 if (fRootTree->FindNext(search_key, (void**)&root) != B_OK) {
363 ERROR("Volume::Mount(): Couldn't find fs root\n");
366 TRACE("Volume::Mount(): Found fs root: %lld\n", root->BlockNum());
367 fFSTree = new(std::nothrow) BPlusTree(this, root->BlockNum());
368 free(root);
374 if (fRootTree->FindNext(search_key, (void**)&root) != B_OK) {
375 ERROR("Volume::Mount(): Couldn't find dev root\n");
378 TRACE("Volume::Mount(): Found dev root: %lld\n", root->BlockNum());
379 fDevTree = new(std::nothrow) BPlusTree(this, root->BlockNum());
380 free(root);
386 if (fRootTree->FindNext(search_key, (void**)&root) != B_OK) {
387 ERROR("Volume::Mount(): Couldn't find checksum root\n");
390 TRACE("Volume::Mount(): Found checksum root: %lld\n", root->BlockNum());
391 fChecksumTree = new(std::nothrow) BPlusTree(this, root->BlockNum());
392 free(root);
400 ERROR("could not create root node: get_vnode() failed!\n");
404 TRACE("Volume::Mount(): Found root node: %lld (%s)\n", fRootNode->ID(),
447 TRACE("Volume::Unmount(): Putting root node\n");