mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 00/23] RFC DRBD fixes
@ 2014-07-03  8:42 Philipp Reisner
  2014-07-03  8:42 ` [PATCH 01/23] drbd: poison free'd device, resource and connection structs Philipp Reisner
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Philipp Reisner @ 2014-07-03  8:42 UTC (permalink / raw)
  To: linux-kernel, Jens Axboe; +Cc: drbd-dev

Hi,

this series adds a debugfs hierarchy to DRBD. It unveils a lot
of information about timing of states/stages of IO requests.

This information helps a lot while optimizing DRBD for SSD
based IO stacks.

Dan Carpenter (1):
  drbd: silence underflow warning in read_in_block()

Lars Ellenberg (22):
  drbd: poison free'd device, resource and connection structs
  drbd: fix drbd_destroy_device reference count updates
  drbd: track meta data IO intent, start and submit time
  drbd: gather detailed timing statistics for drbd_requests
  drbd: add lists to find oldest pending requests
  drbd: add caching oldest request pointers for replication stages
  drbd: improve throttling decisions of background resynchronisation
  drbd: track timing details of peer_requests
  drbd: register peer requests on read_ee early
  drbd: track details of bitmap IO
  drbd: debugfs: add basic hierarchy
  drbd: debugfs: add in_flight_summary data
  drbd: debugfs: deal with destructor racing with open of debugfs file
  drbd: debugfs: Add in_flight_summary
  drbd: debugfs: add callback_history
  drbd: debugfs: add per volume oldest_requests
  drbd: debugfs: add version tag to debugfs files
  drbd: debugfs: add per connection oldest requests
  drbd: debugfs: add per device data_gen_id
  drbd: resync should only lock out specific ranges
  drbd: drop spurious parameters from _drbd_md_sync_page_io
  drbd: implicitly truncate cpu-mask

 drivers/block/drbd/Makefile        |   1 +
 drivers/block/drbd/drbd_actlog.c   |  80 +++-
 drivers/block/drbd/drbd_bitmap.c   |  70 ++-
 drivers/block/drbd/drbd_debugfs.c  | 958 +++++++++++++++++++++++++++++++++++++
 drivers/block/drbd/drbd_debugfs.h  |  39 ++
 drivers/block/drbd/drbd_int.h      | 175 ++++++-
 drivers/block/drbd/drbd_main.c     | 116 +++--
 drivers/block/drbd/drbd_nl.c       |   4 +-
 drivers/block/drbd/drbd_proc.c     |   3 +
 drivers/block/drbd/drbd_receiver.c | 138 ++++--
 drivers/block/drbd/drbd_req.c      | 411 +++++++++++-----
 drivers/block/drbd/drbd_worker.c   |  59 ++-
 include/linux/drbd.h               |   2 +-
 lib/lru_cache.c                    |  21 +-
 14 files changed, 1784 insertions(+), 293 deletions(-)
 create mode 100644 drivers/block/drbd/drbd_debugfs.c
 create mode 100644 drivers/block/drbd/drbd_debugfs.h

-- 
1.9.1


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

end of thread, other threads:[~2014-07-03  8:53 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-03  8:42 [PATCH 00/23] RFC DRBD fixes Philipp Reisner
2014-07-03  8:42 ` [PATCH 01/23] drbd: poison free'd device, resource and connection structs Philipp Reisner
2014-07-03  8:42 ` [PATCH 02/23] drbd: fix drbd_destroy_device reference count updates Philipp Reisner
2014-07-03  8:42 ` [PATCH 03/23] drbd: track meta data IO intent, start and submit time Philipp Reisner
2014-07-03  8:42 ` [PATCH 04/23] drbd: gather detailed timing statistics for drbd_requests Philipp Reisner
2014-07-03  8:42 ` [PATCH 05/23] drbd: add lists to find oldest pending requests Philipp Reisner
2014-07-03  8:42 ` [PATCH 06/23] drbd: add caching oldest request pointers for replication stages Philipp Reisner
2014-07-03  8:42 ` [PATCH 07/23] drbd: improve throttling decisions of background resynchronisation Philipp Reisner
2014-07-03  8:43 ` [PATCH 08/23] drbd: track timing details of peer_requests Philipp Reisner
2014-07-03  8:43 ` [PATCH 09/23] drbd: register peer requests on read_ee early Philipp Reisner
2014-07-03  8:43 ` [PATCH 10/23] drbd: track details of bitmap IO Philipp Reisner
2014-07-03  8:43 ` [PATCH 11/23] drbd: debugfs: add basic hierarchy Philipp Reisner
2014-07-03  8:43 ` [PATCH 12/23] drbd: debugfs: add in_flight_summary data Philipp Reisner
2014-07-03  8:43 ` [PATCH 13/23] drbd: debugfs: deal with destructor racing with open of debugfs file Philipp Reisner
2014-07-03  8:43 ` [PATCH 14/23] drbd: debugfs: Add in_flight_summary Philipp Reisner
2014-07-03  8:43 ` [PATCH 15/23] drbd: debugfs: add callback_history Philipp Reisner
2014-07-03  8:43 ` [PATCH 16/23] drbd: debugfs: add per volume oldest_requests Philipp Reisner
2014-07-03  8:43 ` [PATCH 17/23] drbd: debugfs: add version tag to debugfs files Philipp Reisner
2014-07-03  8:43 ` [PATCH 18/23] drbd: debugfs: add per connection oldest requests Philipp Reisner
2014-07-03  8:43 ` [PATCH 19/23] drbd: debugfs: add per device data_gen_id Philipp Reisner
2014-07-03  8:43 ` [PATCH 20/23] drbd: resync should only lock out specific ranges Philipp Reisner
2014-07-03  8:43 ` [PATCH 21/23] drbd: drop spurious parameters from _drbd_md_sync_page_io Philipp Reisner
2014-07-03  8:43 ` [PATCH 22/23] drbd: implicitly truncate cpu-mask Philipp Reisner
2014-07-03  8:43 ` [PATCH 23/23] drbd: silence underflow warning in read_in_block() Philipp Reisner

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®