Debug output.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29551 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
94ea9b3924
commit
ebd44d3436
@ -578,14 +578,14 @@ UserlandFS::KernelEmu::file_cache_create(dev_t mountID, ino_t vnodeID,
|
|||||||
FileSystem* fileSystem;
|
FileSystem* fileSystem;
|
||||||
status_t error = get_port_and_fs(&port, &fileSystem);
|
status_t error = get_port_and_fs(&port, &fileSystem);
|
||||||
if (error != B_OK)
|
if (error != B_OK)
|
||||||
return error;
|
RETURN_ERROR(error);
|
||||||
|
|
||||||
// prepare the request
|
// prepare the request
|
||||||
RequestAllocator allocator(port->GetPort());
|
RequestAllocator allocator(port->GetPort());
|
||||||
FileCacheCreateRequest* request;
|
FileCacheCreateRequest* request;
|
||||||
error = AllocateRequest(allocator, &request);
|
error = AllocateRequest(allocator, &request);
|
||||||
if (error != B_OK)
|
if (error != B_OK)
|
||||||
return error;
|
RETURN_ERROR(error);
|
||||||
|
|
||||||
request->nsid = mountID;
|
request->nsid = mountID;
|
||||||
request->vnid = vnodeID;
|
request->vnid = vnodeID;
|
||||||
@ -596,11 +596,11 @@ UserlandFS::KernelEmu::file_cache_create(dev_t mountID, ino_t vnodeID,
|
|||||||
FileCacheCreateReply* reply;
|
FileCacheCreateReply* reply;
|
||||||
error = port->SendRequest(&allocator, &handler, (Request**)&reply);
|
error = port->SendRequest(&allocator, &handler, (Request**)&reply);
|
||||||
if (error != B_OK)
|
if (error != B_OK)
|
||||||
return error;
|
RETURN_ERROR(error);
|
||||||
RequestReleaser requestReleaser(port, reply);
|
RequestReleaser requestReleaser(port, reply);
|
||||||
|
|
||||||
// process the reply
|
// process the reply
|
||||||
return reply->error;
|
RETURN_ERROR(reply->error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user