From: Kent Overstreet <koverstreet@google.com>
To: linux-bcache@vger.kernel.org, linux-kernel@vger.kernel.org,
dm-devel@redhat.com
Cc: Kent Overstreet <koverstreet@google.com>,
tejun@google.com, agk@redhat.com, dan.j.williams@intel.com
Subject: [Bcache v14 00/16]
Date: Tue, 12 Jun 2012 08:39:06 -0700 [thread overview]
Message-ID: <1339515562-14638-1-git-send-email-koverstreet@google.com> (raw)
Augh. I had about two pages written out about what's changed since the
last version, and then I accidentally reran git format-patch instead of
git send-email, and poof.
stab. stab. stab.
So, here's the shortlog since the last version instead.
Dan Williams (5):
bcache: disable lockdep, enable CONFIG_BCACHE=m
bcache: drop select COMPACTION
bcache: fix symlink removal
bcache: move to drivers/md/
bcache: uplevel allocation of 'cached_dev' and 'cache'
Kent Overstreet (81):
bcache: Add format string checking to cache_set_error()
bcache: Switch error macros to do {} while
bcache: Check queue_max_segments() in __bio_max_sector()
bcache: Document some things and incorporate some review feedback
bcache: Fix a bug in submit_bbio_split()
bcache: sprint_string_list() -> snprint_string_list()
bcache: Kill hprint()
bcache: Review feedback
bcache: Kill popcount()
bcache: Take out some nested functions
bcache: Documentation and coding style from review feedback
bcache: Kill contamination
bcache: BDEV_DATA_START
bcache: BUCKET_(GC|DISK)_GEN_MAX
bcache: MAX_IN_FLIGHT_DISCARDS
bcache: Capitalize constants
bcache: Convert macros to inline functions
bcache: Fix a deadlock between gc and allocation
bcache: Change pop_bucket() to take gc_mark instead of prio
bcache: Garbage collection cleanups
bcache: Split out gc mark and sectors used
bcache: Add looping macro for cached btree nodes
bcache: rename do_bio_hook() -> search_alloc()
bcache: Fix for discards in writeback mode
bcache: Don't unnecessarily init btree_op closure
bcache: Don't reissue no data bio to flash only dev
bcache: Refactor request path/control flow
bcache: Kill some dependencies on bcache_device ptr
bcache: Move bcache_device pointer to struct search
bcache: Move bio_insert_done to btree_op
bcache: Move cache_bio, skip to btree_op
bcache: Abstract out keybuf code
bcache: Pass write_prio to pop_bucket(), rework reserve handling
bcache: Factor out mca_reinit()
bcache: Change mca_reap() to check page_order
bcache: Refactor mca_bucket_alloc()
bcache: Factor out cannibalize_bucket()
bcache: Prefix all external symbols with bch_
bcache: Convert to struct closure_waitlist
bcache: Kill bch_bbio_kmalloc(), bi_destructor use
bcache: Kill bio_split_front() and other upstreamed code
remove some bio_puts() for new bio_reset() semantics
bcache: fix bio_map()
bcache: Kill submit_bio_split(), submit_bbio_split()
bcache: Kill bio passthrough split code
bcache: Use bio_clone_bioset()
bcache: Kill uuid_bio
bcache: Kill unnecessary bio_max_sectors() checks
bcache: Better naming in cached_dev_cache_miss()
bcache: Kill bio_get() in btree_bio_init()
bcache: Kill prio_bio
bcache: Get refcount when bio is submitted, not when it's split
bcache: Get refcount at the same time io is submitted
closures: closure_call()
bcache: Refactor flash_dev_make_request()
closures: continue_at_nobarrier()
bcache: Refactor request_(read|write)()
bcache: Get rid of set_closure_fn() in read_dirty()
bcache: Kill compat code for old kernels
bcache: next() -> bkey_next()
bcache: Document auxiliary search trees
bcache: Add bch_alloc_sectors()
bcache: Rename KEY_DEV() -> KEY_INODE(), introduce KEY_OFFSET()
bcache: Fix for CONFIG_TRACING=y
bcache: Clean up, comment bio_insert()
bcache: Move debugfs file to cache_set
bcache: Rename vars for consistency
bcache: Writeback refactoring/locking improvements
bcache: Factor out ratelimit code
closures: Destructors
closures: closure_sleep() -> closure_delay()
closures: closure_trylock_call
closure_sleep() -> closure_delay()
bcache: Fix readahead past end of the device
bcache: Convert background writeback to use a closure
bcache: Reorder writeback code
bcache: Fix dirty data accounting
bcache: Better bset stats
bcache: Fix detaching when unregistering cache set
bcache: Moving garbage collector
bcache: Update cgroup code
drivers/md/bcache/Makefile | 12 +-
drivers/md/bcache/alloc.c | 386 ++++++++-------
drivers/md/bcache/bcache.h | 429 ++++++++++------
drivers/md/bcache/bset.c | 334 ++++++++-----
drivers/md/bcache/bset.h | 125 ++---
drivers/md/bcache/btree.c | 946 ++++++++++++++++++++++--------------
drivers/md/bcache/btree.h | 108 +++--
drivers/md/bcache/debug.c | 112 ++---
drivers/md/bcache/debug.h | 39 +-
drivers/md/bcache/io.c | 128 ++---
drivers/md/bcache/journal.c | 93 ++--
drivers/md/bcache/journal.h | 20 +-
drivers/md/bcache/movinggc.c | 245 ++++++++++
drivers/md/bcache/request.c | 1077 ++++++++++++++++++-----------------------
drivers/md/bcache/request.h | 30 +-
drivers/md/bcache/stats.c | 50 +-
drivers/md/bcache/stats.h | 22 +-
drivers/md/bcache/super.c | 682 +++++++++++++-------------
drivers/md/bcache/sysfs.c | 228 ++++-----
drivers/md/bcache/sysfs.h | 8 -
drivers/md/bcache/util.c | 235 ++-------
drivers/md/bcache/util.h | 80 +--
drivers/md/bcache/writeback.c | 534 ++++++++------------
include/linux/closure.h | 88 ++--
include/trace/events/bcache.h | 32 +-
lib/closure.c | 26 +-
26 files changed, 3177 insertions(+), 2892 deletions(-)
next reply other threads:[~2012-06-12 15:44 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-12 15:39 Kent Overstreet [this message]
2012-06-12 15:39 ` [Bcache v14 01/16] Revert "rw_semaphore: remove up/down_read_non_owner" Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 02/16] Fix ratelimit macro to compile in c99 mode Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 03/16] Export get_random_int() Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 04/16] Add human-readable units modifier to vsnprintf() Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 05/16] Export blk_fill_rwbs() Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 06/16] Export __lockdep_no_validate__ Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 07/16] Closures Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 08/16] bcache: Documentation, and changes to generic code Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 09/16] bcache: Generic utility code Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 10/16] bcache: Superblock/initialization/sysfs code Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 11/16] bcache: Core btree code Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 12/16] bcache: Bset code (lookups within a btree node) Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 13/16] bcache: Journalling Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 14/16] bcache: Request, io and allocation code Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 15/16] bcache: Writeback, copying garbage collection Kent Overstreet
2012-06-12 15:39 ` [Bcache v14 16/16] bcache: Debug and tracing code Kent Overstreet
2012-06-12 16:50 ` Joe Perches
2012-06-12 17:24 ` Kent Overstreet
2012-06-12 17:35 ` Joe Perches
2012-06-12 17:45 ` Kent Overstreet
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1339515562-14638-1-git-send-email-koverstreet@google.com \
--to=koverstreet@google.com \
--cc=agk@redhat.com \
--cc=dan.j.williams@intel.com \
--cc=dm-devel@redhat.com \
--cc=linux-bcache@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tejun@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®