提交 c674b42d 编写于 作者: I Igor Canadi

Rephrasing the comment

Summary: Per @haobo's request, rephrasing the comment for allocate

Test Plan: It's a comment!

Reviewers: haobo, kailiu

Reviewed By: kailiu

CC: leveldb

Differential Revision: https://reviews.facebook.net/D13575
上级 43ee5e2b
...@@ -287,7 +287,9 @@ Status BlobStore::CreateNewBucket() { ...@@ -287,7 +287,9 @@ Status BlobStore::CreateNewBucket() {
return s; return s;
} }
// tmpfs does not support allocate // whether Allocate succeeds or not, does not affect the overall correctness
// of this function - calling Allocate is really optional
// (also, tmpfs does not support allocate)
buckets_[new_bucket_id].get()->Allocate(0, block_size_ * blocks_per_bucket_); buckets_[new_bucket_id].get()->Allocate(0, block_size_ * blocks_per_bucket_);
return free_list_.Free(Blob(new_bucket_id, 0, blocks_per_bucket_)); return free_list_.Free(Blob(new_bucket_id, 0, blocks_per_bucket_));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册