]> sourceware.org Git - lvm2.git/commitdiff
bcache: add a comment
authorJoe Thornber <ejt@redhat.com>
Thu, 3 May 2018 08:14:59 +0000 (09:14 +0100)
committerJoe Thornber <ejt@redhat.com>
Thu, 3 May 2018 08:21:10 +0000 (09:21 +0100)
lib/device/bcache.h

index 2b0d9659f36ecb002e2913d31993e89e2c6c4836..6a18d33aba613204023271eb0bed2209cb3c7ebc 100644 (file)
@@ -150,18 +150,18 @@ bool bcache_invalidate(struct bcache *cache, int fd, block_address index);
  */
 bool bcache_invalidate_fd(struct bcache *cache, int fd);
 
-/*
- * Prefetches the blocks neccessary to satisfy a byte range.
- */
+
+//----------------------------------------------------------------
+// The next four functions are utilities written in terms of the above api.
+// Prefetches the blocks neccessary to satisfy a byte range.
 void bcache_prefetch_bytes(struct bcache *cache, int fd, off_t start, size_t len);
 
-/*
- * Reads and writes the bytes.  Returns false if errors occur.
- */
+// Reads, writes and zeroes bytes.  Returns false if errors occur.
 bool bcache_read_bytes(struct bcache *cache, int fd, off_t start, size_t len, void *data);
 bool bcache_write_bytes(struct bcache *cache, int fd, off_t start, size_t len, void *data);
 bool bcache_write_zeros(struct bcache *cache, int fd, off_t start, size_t len);
 
-/*----------------------------------------------------------------*/
+//----------------------------------------------------------------
 
 #endif
This page took 0.03389 seconds and 5 git commands to generate.