linux-bcache.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Bcache for 3.14
@ 2014-01-06 22:56 Kent Overstreet
  0 siblings, 0 replies; 3+ messages in thread
From: Kent Overstreet @ 2014-01-06 22:56 UTC (permalink / raw)
  To: axboe; +Cc: linux-kernel, linux-bcache

Jens - here's the bcache pull for 3.14, on top of your for-3.14/drivers branch.

First 11 patches are duplicates of the bcache patches in v3.13-rc5 but not your
for-3.14 drivers branch.

The following changes since commit 8586ea96b4f919a9b38929040bc9ce57c9998fc4:

  pktcdvd: fix error return code (2014-01-03 10:05:34 +0100)

are available in the git repository at:

  git://evilpiepirate.org/~kent/linux-bcache.git bcache-for-3.14

for you to fetch changes up to e793d59db9369522b676365fae553897ea1846a7:

  bcache: Fix auxiliary search trees for key size > cacheline size (2014-01-06 14:52:09 -0800)

----------------------------------------------------------------
Kent Overstreet (36):
      bcache: Use uninterruptible sleep in writeback
      bcache: Fix dirty_data accounting
      bcache: bugfix for race between moving_gc and bucket_invalidate
      bcache: New writeback PD controller
      bcache: Data corruption fix
      bcache: Minor journal fix
      bcache: Performance fix for when journal entry is full
      bcache: Minor btree cache fix
      bcache: Don't touch bucket gen for dirty ptrs
      bcache: Zero less memory
      bcache: kill closure locking usage
      bcache: kill closure locking code
      bcache: Rework allocator reserves
      bcache: Do bkey_put() in btree_split() error path
      bcache/md: Use raid stripe size
      bcache: Trivial error handling fix
      bcache: kill index()
      bcache: Btree verify code improvements
      bcache: Use a mempool for mergesort temporary space
      bcache: Remove/fix some header dependencies
      bcache: Make bch_keylist_realloc() take u64s, not nptrs
      bcache: Bkey indexing renaming
      bcache: Split out sort_extent_cmp()
      bcache: Add struct bset_sort_state
      bcache: Rename/shuffle various code around
      bcache: Abstract out stuff needed for sorting
      bcache: Add struct btree_keys
      bcache: Add bch_btree_keys_u64s_remaining()
      bcache: Refactor bset_tree sysfs stats
      bcache: Convert btree_iter to struct btree_keys
      bcache: Convert debug code to btree_keys
      bcache: Convert sorting to btree_keys
      bcache: Move insert_fixup() to btree_keys_ops
      bcache: Improve bucket_prio() calculation
      bcache: Don't return -EINTR when insert finished
      bcache: Fix auxiliary search trees for key size > cacheline size

Nicholas Swenson (7):
      bcache: Fix for can_attach_cache()
      bcache: Fix heap_peek() macro
      bcache: fix for gc crashing when no sectors are used
      bcache: bugfix - moving_gc now moves only correct buckets
      bcache: fix for gc and writeback race
      bcache: update bch_bkey_try_merge
      bcache: Add bch_bkey_equal_header()

Stefan Priebe (1):
      bcache: kthread don't set writeback task to INTERUPTIBLE

Wei Yongjun (1):
      bcache: fix sparse non static symbol warning

 drivers/md/bcache/Makefile    |   5 +-
 drivers/md/bcache/alloc.c     |  91 +++--
 drivers/md/bcache/bcache.h    |  94 ++---
 drivers/md/bcache/bset.c      | 904 +++++++++++++++++++++++-------------------
 drivers/md/bcache/bset.h      | 440 +++++++++++++-------
 drivers/md/bcache/btree.c     | 699 +++++++++++++-------------------
 drivers/md/bcache/btree.h     |  62 +--
 drivers/md/bcache/closure.c   |  90 +----
 drivers/md/bcache/closure.h   | 355 +++++------------
 drivers/md/bcache/debug.c     | 247 +++---------
 drivers/md/bcache/debug.h     |  27 +-
 drivers/md/bcache/extents.c   | 616 ++++++++++++++++++++++++++++
 drivers/md/bcache/extents.h   |  13 +
 drivers/md/bcache/journal.c   |  75 ++--
 drivers/md/bcache/journal.h   |   1 +
 drivers/md/bcache/movinggc.c  |  23 +-
 drivers/md/bcache/request.c   |  72 ++--
 drivers/md/bcache/request.h   |  21 +-
 drivers/md/bcache/super.c     | 105 +++--
 drivers/md/bcache/sysfs.c     | 129 +++---
 drivers/md/bcache/util.c      |   8 +-
 drivers/md/bcache/util.h      |  10 +-
 drivers/md/bcache/writeback.c |  53 ++-
 drivers/md/raid5.c            |   1 +
 include/linux/blkdev.h        |   1 +
 include/trace/events/bcache.h |  10 +-
 include/uapi/linux/bcache.h   |   3 +-
 27 files changed, 2330 insertions(+), 1825 deletions(-)
 create mode 100644 drivers/md/bcache/extents.c
 create mode 100644 drivers/md/bcache/extents.h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [GIT PULL] bcache for 3.14
@ 2014-01-08 21:19 Kent Overstreet
  2014-01-10  2:34 ` Jens Axboe
  0 siblings, 1 reply; 3+ messages in thread
From: Kent Overstreet @ 2014-01-08 21:19 UTC (permalink / raw)
  To: axboe; +Cc: linux-kernel, linux-bcache

Jens, here's the updated bcache pull, rebased and retested on top of
your latest for-3.14/drivers branch. Only other change was a one liner
in the "bcache/md: Use raid stripe size" patch to update
blk_stack_limits(), as pointed out by Mike Snitzer.


The following changes since commit 54a387cb9e600256e50cb9e2209e7e4f06f464de:

  Merge branch 'for-3.14/core' into for-3.14/drivers (2014-01-08 09:32:45 -0700)

are available in the git repository at:


  git://evilpiepirate.org/~kent/linux-bcache.git bcache-for-3.14

for you to fetch changes up to 9dd6358a21daf4fc6a5b2b779267a62f0d1d3181:

  bcache: Fix auxiliary search trees for key size > cacheline size (2014-01-08 13:05:15 -0800)

----------------------------------------------------------------
Kent Overstreet (32):
      bcache: Data corruption fix
      bcache: Minor journal fix
      bcache: Performance fix for when journal entry is full
      bcache: Minor btree cache fix
      bcache: Don't touch bucket gen for dirty ptrs
      bcache: Zero less memory
      bcache: kill closure locking usage
      bcache: kill closure locking code
      bcache: Rework allocator reserves
      bcache: Do bkey_put() in btree_split() error path
      bcache/md: Use raid stripe size
      bcache: Trivial error handling fix
      bcache: kill index()
      bcache: Btree verify code improvements
      bcache: Use a mempool for mergesort temporary space
      bcache: Remove/fix some header dependencies
      bcache: Make bch_keylist_realloc() take u64s, not nptrs
      bcache: Bkey indexing renaming
      bcache: Split out sort_extent_cmp()
      bcache: Add struct bset_sort_state
      bcache: Rename/shuffle various code around
      bcache: Abstract out stuff needed for sorting
      bcache: Add struct btree_keys
      bcache: Add bch_btree_keys_u64s_remaining()
      bcache: Refactor bset_tree sysfs stats
      bcache: Convert btree_iter to struct btree_keys
      bcache: Convert debug code to btree_keys
      bcache: Convert sorting to btree_keys
      bcache: Move insert_fixup() to btree_keys_ops
      bcache: Improve bucket_prio() calculation
      bcache: Don't return -EINTR when insert finished
      bcache: Fix auxiliary search trees for key size > cacheline size

Nicholas Swenson (2):
      bcache: update bch_bkey_try_merge
      bcache: Add bch_bkey_equal_header()

 block/blk-settings.c          |   4 +
 drivers/md/bcache/Makefile    |   5 +-
 drivers/md/bcache/alloc.c     |  89 +++--
 drivers/md/bcache/bcache.h    |  82 ++--
 drivers/md/bcache/bset.c      | 904 +++++++++++++++++++++++-------------------
 drivers/md/bcache/bset.h      | 440 +++++++++++++-------
 drivers/md/bcache/btree.c     | 676 ++++++++++++-------------------
 drivers/md/bcache/btree.h     |  62 +--
 drivers/md/bcache/closure.c   |  90 +----
 drivers/md/bcache/closure.h   | 355 +++++------------
 drivers/md/bcache/debug.c     | 247 +++---------
 drivers/md/bcache/debug.h     |  27 +-
 drivers/md/bcache/extents.c   | 616 ++++++++++++++++++++++++++++
 drivers/md/bcache/extents.h   |  13 +
 drivers/md/bcache/journal.c   |  75 ++--
 drivers/md/bcache/journal.h   |   1 +
 drivers/md/bcache/movinggc.c  |   2 +-
 drivers/md/bcache/request.c   |  72 ++--
 drivers/md/bcache/request.h   |  21 +-
 drivers/md/bcache/super.c     | 103 +++--
 drivers/md/bcache/sysfs.c     |  79 ++--
 drivers/md/bcache/util.h      |   8 +
 drivers/md/raid5.c            |   1 +
 include/linux/blkdev.h        |   1 +
 include/trace/events/bcache.h |  10 +-
 include/uapi/linux/bcache.h   |   3 +-
 26 files changed, 2225 insertions(+), 1761 deletions(-)
 create mode 100644 drivers/md/bcache/extents.c
 create mode 100644 drivers/md/bcache/extents.h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] bcache for 3.14
  2014-01-08 21:19 [GIT PULL] bcache " Kent Overstreet
@ 2014-01-10  2:34 ` Jens Axboe
  0 siblings, 0 replies; 3+ messages in thread
From: Jens Axboe @ 2014-01-10  2:34 UTC (permalink / raw)
  To: Kent Overstreet; +Cc: linux-kernel, linux-bcache

On Wed, Jan 08 2014, Kent Overstreet wrote:
> Jens, here's the updated bcache pull, rebased and retested on top of
> your latest for-3.14/drivers branch. Only other change was a one liner
> in the "bcache/md: Use raid stripe size" patch to update
> blk_stack_limits(), as pointed out by Mike Snitzer.

Pulled, thanks!

-- 
Jens Axboe

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-01-10  2:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-06 22:56 [GIT PULL] Bcache for 3.14 Kent Overstreet
  -- strict thread matches above, loose matches on Subject: below --
2014-01-08 21:19 [GIT PULL] bcache " Kent Overstreet
2014-01-10  2:34 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).