All of lore.kernel.org
 help / color / mirror / Atom feed
* [lustre-devel] [PATCH 00/12] lustre: new patches to address previous reviews
@ 2018-11-26  2:48 James Simmons
  2018-11-26  2:48 ` [lustre-devel] [PATCH 01/12] lustre: llite: move CONFIG_SECURITY handling to llite_internal.h James Simmons
                   ` (11 more replies)
  0 siblings, 12 replies; 23+ messages in thread
From: James Simmons @ 2018-11-26  2:48 UTC (permalink / raw)
  To: lustre-devel

New patches from myself to address issues with the last batch I sent.
Found a bug in the llite debugfs stats registeration code while
testing. Updated the TODO since many of the task have been done.
The patch for LU-5461 has been ported which makes sanity test 244 to
pass. The patch ported from LU-10218 now makes it possible to run
the sanity 160 changelog test without locking up the client node.
Several patches independent of PFL have been ported from lustre
2.10 LTS release.

Alexander Boyko (1):
  lustre: obdclass: obd_device improvement

Dmitry Eremin (1):
  lustre: clio: Introduce parallel tasks framework

James Simmons (6):
  lustre: llite: move CONFIG_SECURITY handling to llite_internal.h
  lustre: lnd: create enum kib_dev_caps
  lustre: lnd: test fpo_fmr_pool pointer instead of special bool
  lustre: llite: remove llite_loop left overs
  lustre: llite: avoid duplicate stats debugfs registration
  lustre: update TODO lustre list

John L. Hammond (2):
  lustre: mdc: propagate changelog errors to readers
  lustre: mdc: use large xattr buffers for old servers

Lai Siyao (1):
  lustre: mdc: don't add to page cache upon failure

Patrick Farrell (1):
  lustre: ldlm: No -EINVAL for canceled != unused

 drivers/staging/lustre/TODO                        |  85 ----
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c    |  17 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h    |  13 +-
 drivers/staging/lustre/lustre/include/cl_ptask.h   | 145 ++++++
 drivers/staging/lustre/lustre/include/obd_class.h  |   9 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_resource.c |  16 +-
 drivers/staging/lustre/lustre/llite/file.c         | 107 +----
 .../staging/lustre/lustre/llite/llite_internal.h   |  81 +---
 drivers/staging/lustre/lustre/llite/llite_lib.c    |  11 +-
 drivers/staging/lustre/lustre/llite/lproc_llite.c  |   2 +-
 drivers/staging/lustre/lustre/llite/rw26.c         |  51 +--
 drivers/staging/lustre/lustre/mdc/mdc_changelog.c  |  45 +-
 drivers/staging/lustre/lustre/mdc/mdc_locks.c      |  14 +
 drivers/staging/lustre/lustre/mdc/mdc_request.c    |   5 +-
 drivers/staging/lustre/lustre/obdclass/Makefile    |   3 +-
 drivers/staging/lustre/lustre/obdclass/cl_ptask.c  | 501 +++++++++++++++++++++
 drivers/staging/lustre/lustre/obdclass/genops.c    | 284 ++++++++----
 .../staging/lustre/lustre/obdclass/obd_config.c    | 143 ++----
 drivers/staging/lustre/lustre/obdclass/obd_mount.c |   6 +-
 19 files changed, 1007 insertions(+), 531 deletions(-)
 create mode 100644 drivers/staging/lustre/lustre/include/cl_ptask.h
 create mode 100644 drivers/staging/lustre/lustre/obdclass/cl_ptask.c

-- 
1.8.3.1

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

end of thread, other threads:[~2018-11-29 12:06 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-26  2:48 [lustre-devel] [PATCH 00/12] lustre: new patches to address previous reviews James Simmons
2018-11-26  2:48 ` [lustre-devel] [PATCH 01/12] lustre: llite: move CONFIG_SECURITY handling to llite_internal.h James Simmons
2018-11-26  2:48 ` [lustre-devel] [PATCH 02/12] lustre: lnd: create enum kib_dev_caps James Simmons
2018-11-26  2:48 ` [lustre-devel] [PATCH 03/12] lustre: lnd: test fpo_fmr_pool pointer instead of special bool James Simmons
2018-11-26  2:48 ` [lustre-devel] [PATCH 04/12] lustre: llite: remove llite_loop left overs James Simmons
2018-11-26  2:48 ` [lustre-devel] [PATCH 05/12] lustre: llite: avoid duplicate stats debugfs registration James Simmons
2018-11-26  2:48 ` [lustre-devel] [PATCH 06/12] lustre: mdc: don't add to page cache upon failure James Simmons
2018-11-27  3:01   ` NeilBrown
2018-11-29 12:06     ` Siyao Lai
2018-11-26  2:48 ` [lustre-devel] [PATCH 07/12] lustre: ldlm: No -EINVAL for canceled != unused James Simmons
2018-11-26  2:48 ` [lustre-devel] [PATCH 08/12] lustre: mdc: propagate changelog errors to readers James Simmons
2018-11-27  3:13   ` NeilBrown
2018-11-26  2:48 ` [lustre-devel] [PATCH 09/12] lustre: obdclass: obd_device improvement James Simmons
2018-11-27  4:01   ` NeilBrown
2018-11-26  2:48 ` [lustre-devel] [PATCH 10/12] lustre: clio: Introduce parallel tasks framework James Simmons
2018-11-27  4:20   ` NeilBrown
2018-11-27  5:08     ` Andreas Dilger
2018-11-27 13:51       ` Patrick Farrell
2018-11-27 14:01         ` Patrick Farrell
2018-11-27 22:27           ` NeilBrown
2018-11-27 22:50             ` Patrick Farrell
2018-11-26  2:48 ` [lustre-devel] [PATCH 11/12] lustre: mdc: use large xattr buffers for old servers James Simmons
2018-11-26  2:48 ` [lustre-devel] [PATCH 12/12] lustre: update TODO lustre list James Simmons

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.