Go to file
Kent Overstreet dda0923eeb debify
2016-04-25 17:14:11 -08:00
ccan Redo lots of stuff 2016-03-11 21:18:42 -09:00
debian debify 2016-04-25 17:14:11 -08:00
.gitignore Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache-assemble.c Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache-assemble.h Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache-device.c Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache-device.h Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache-format.c endianness 2016-03-11 21:18:57 -09:00
bcache-format.h Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache-fs.c Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache-fs.h Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache-ioctl.h Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache-ondisk.h On disk format updates 2016-03-11 21:18:57 -09:00
bcache-register Merge remote-tracking branch 'remotes/angband/master' 2014-03-20 13:38:08 -07:00
bcache-run.c Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache-run.h Redo lots of stuff 2016-03-11 21:18:42 -09:00
bcache.8 debify 2016-04-25 17:14:11 -08:00
bcache.c On disk format updates 2016-03-11 21:18:57 -09:00
bcache.h Redo lots of stuff 2016-03-11 21:18:42 -09:00
config.h Redo lots of stuff 2016-03-11 21:18:42 -09:00
COPYING bcache-tools are GPL 2013-07-17 13:13:31 -07:00
Makefile debify 2016-04-25 17:14:11 -08:00
README Add a command to display a bcache superblock. 2013-03-09 14:33:08 +01:00
util.c Redo lots of stuff 2016-03-11 21:18:42 -09:00
util.h endianness 2016-03-11 21:18:57 -09:00

These are the userspace tools required for bcache.

Bcache is a patch for the Linux kernel to use SSDs to cache other block
devices. For more information, see http://bcache.evilpiepirate.org.
Documentation for the run time interface is included in the kernel tree, in
Documentantion/bcache.txt.

Included tools:

make-bcache
Formats a block device for use with bcache. A device can be formatted for use
as a cache or as a backing device (requires yet to be implemented kernel
support). The most important option is for specifying the bucket size.
Allocation is done in terms of buckets, and cache hits are counted per bucket;
thus a smaller bucket size will give better cache utilization, but poorer write
performance. The bucket size is intended to be equal to the size of your SSD's
erase blocks, which seems to be 128k-512k for most SSDs; feel free to
experiment.

probe-bcache
Only necessary until support for the bcache superblock is included
in blkid; in the meantime, provides just enough functionality for a udev script
to create the /dev/disk/by-uuid symlink. The arguments it does support are the
same as for blkid.

bcache-super-show
Prints the bcache superblock of a cache device or a backing device.