mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "John L. Hammond" <john.hammond@intel.com>
To: <greg@kroah.com>, <andreas.dilger@intel.com>, <oleg.drokin@intel.com>
Cc: <linux-kernel@vger.kernel.org>,
	"John L. Hammond" <john.hammond@intel.com>
Subject: [PATCH 00/12] staging/lustre: yet more dead code removal
Date: Fri, 5 Sep 2014 15:08:06 -0500	[thread overview]
Message-ID: <1409947698-30781-1-git-send-email-john.hammond@intel.com> (raw)

From: "John L. Hammond" <john.hammond@intel.com>

Howdy,

This series yet removes more dead and obsolete code from drivers/staging/lustre
in the form of methods from struct obd_ops and server specific llog handling.

John L. Hammond (12):
  staging/lustre/lov: remove unused OBD methods
  staging/lustre/osc: remove unused OBD methods
  staging/lustre/osc: remove obsolete llog handling code
  staging/lustre: remove obd_ost.h
  staging/lustre/mdc: remove unused OBD methods
  staging/lustre/mdc: inline llog methods
  staging/lustre/mgc: inline mgc_cancel()
  staging/lustre: remove unused OBD methods
  staging/lustre/mgc: remove server specific llog handling
  staging/lustre/ptlrpc: remove sptlrpc_conf_target_get_rules()
  staging/lustre/obdclass: remove llog_ioctl.c
  staging/lustre/obdclass: remove local_storage.[ch]

 .../staging/lustre/lustre/include/lustre_lite.h    |    1 -
 drivers/staging/lustre/lustre/include/lustre_log.h |   10 -
 drivers/staging/lustre/lustre/include/lustre_sec.h |    3 -
 drivers/staging/lustre/lustre/include/obd.h        |   47 -
 drivers/staging/lustre/lustre/include/obd_class.h  |  279 ------
 drivers/staging/lustre/lustre/include/obd_ost.h    |  100 ---
 drivers/staging/lustre/lustre/lov/lov_internal.h   |   45 -
 drivers/staging/lustre/lustre/lov/lov_merge.c      |   27 -
 drivers/staging/lustre/lustre/lov/lov_obd.c        |  531 ------------
 drivers/staging/lustre/lustre/lov/lov_pack.c       |  172 ----
 drivers/staging/lustre/lustre/lov/lov_request.c    |  784 -----------------
 drivers/staging/lustre/lustre/mdc/mdc_request.c    |  157 +---
 drivers/staging/lustre/lustre/mgc/mgc_request.c    |  101 +--
 drivers/staging/lustre/lustre/obdclass/Makefile    |    4 +-
 drivers/staging/lustre/lustre/obdclass/debug.c     |    1 -
 drivers/staging/lustre/lustre/obdclass/genops.c    |    1 -
 .../staging/lustre/lustre/obdclass/llog_ioctl.c    |  418 ---------
 drivers/staging/lustre/lustre/obdclass/llog_obd.c  |   25 -
 .../staging/lustre/lustre/obdclass/local_storage.c |  894 --------------------
 .../staging/lustre/lustre/obdclass/local_storage.h |   91 --
 .../lustre/lustre/obdclass/lprocfs_status.c        |   20 -
 .../staging/lustre/lustre/osc/osc_cl_internal.h    |    1 -
 drivers/staging/lustre/lustre/osc/osc_quota.c      |    2 +-
 drivers/staging/lustre/lustre/osc/osc_request.c    |  401 +--------
 drivers/staging/lustre/lustre/ptlrpc/recover.c     |    1 -
 drivers/staging/lustre/lustre/ptlrpc/sec_config.c  |  327 -------
 26 files changed, 82 insertions(+), 4361 deletions(-)
 delete mode 100644 drivers/staging/lustre/lustre/include/obd_ost.h
 delete mode 100644 drivers/staging/lustre/lustre/obdclass/llog_ioctl.c
 delete mode 100644 drivers/staging/lustre/lustre/obdclass/local_storage.c
 delete mode 100644 drivers/staging/lustre/lustre/obdclass/local_storage.h

-- 
1.7.9.5


             reply	other threads:[~2014-09-05 20:08 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-05 20:08 John L. Hammond [this message]
2014-09-05 20:08 ` [PATCH 01/12] staging/lustre/lov: remove unused OBD methods John L. Hammond
2014-09-05 20:08 ` [PATCH 02/12] staging/lustre/osc: " John L. Hammond
2014-09-05 20:08 ` [PATCH 03/12] staging/lustre/osc: remove obsolete llog handling code John L. Hammond
2014-09-05 20:08 ` [PATCH 04/12] staging/lustre: remove obd_ost.h John L. Hammond
2014-09-05 20:08 ` [PATCH 05/12] staging/lustre/mdc: remove unused OBD methods John L. Hammond
2014-09-05 20:08 ` [PATCH 06/12] staging/lustre/mdc: inline llog methods John L. Hammond
2014-09-05 20:08 ` [PATCH 07/12] staging/lustre/mgc: inline mgc_cancel() John L. Hammond
2014-09-05 20:08 ` [PATCH 08/12] staging/lustre: remove unused OBD methods John L. Hammond
2014-09-05 20:08 ` [PATCH 09/12] staging/lustre/mgc: remove server specific llog handling John L. Hammond
2014-09-05 20:08 ` [PATCH 10/12] staging/lustre/ptlrpc: remove sptlrpc_conf_target_get_rules() John L. Hammond
2014-09-05 20:08 ` [PATCH 11/12] staging/lustre/obdclass: remove llog_ioctl.c John L. Hammond
2014-09-05 20:08 ` [PATCH 12/12] staging/lustre/obdclass: remove local_storage.[ch] John L. Hammond

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=1409947698-30781-1-git-send-email-john.hammond@intel.com \
    --to=john.hammond@intel.com \
    --cc=andreas.dilger@intel.com \
    --cc=greg@kroah.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oleg.drokin@intel.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

Powered by JetHome