All of lore.kernel.org
 help / color / mirror / Atom feed
* [lustre-devel] [PATCH v2 00/29] More lustre patches
@ 2019-05-20 12:50 James Simmons
  2019-05-20 12:50 ` [lustre-devel] [PATCH v2 01/29] lustre: llite: ll_fault fixes James Simmons
                   ` (28 more replies)
  0 siblings, 29 replies; 44+ messages in thread
From: James Simmons @ 2019-05-20 12:50 UTC (permalink / raw)
  To: lustre-devel

Some of these I posted before but didn't get a formal Reviewed-by.
Some needed some revision.
Some did get a reviewed-by, but depend on patches in the above
categories.

Others are brand new.

James Simmons (1):
  lustre: llite: don't use class_setup_tunables()

NeilBrown (27):
  lustre: llite: fix error in vvp_pgcache seqfile.
  lustre: llite: replace lli_trunc_sem
  lustre: lov: use GFP_NOFS to allocate lo_entries.
  lustre: embed typ_kobj in obd_type
  lustre: obd: collect all resource releasing for obj_type.
  lustre: obd_type: use typ_kobj.name as typ_name
  lustre: obd_type: discard obd_types linked list.
  lustre: obd_type: discard obd_type_lock
  lustre: obdclass: don't copy ops structures in to new type.
  lustre: obdclass: fix module load locking.
  lustre: convert rsi_sem to a spinlock.
  lustre: ldlm: discard varname in ldlm_pool.
  lustre: lprocfs: use log2.h macros instead of shift loop.
  lustre: handles: discard h_owner in favour of h_ops
  lustre: handle: move refcount into the lustre_handle.
  lustre: discard OBD_FREE_RCU
  lustre: portals_handle: rename ops to owner
  lustre: portals_handle: remove locking from class_handle2object()
  lustre: portals_handle: use hlist for hash lists.
  lustre: portals_handle: discard h_lock.
  lustre: remove unused fields from struct obd_device
  lustre: obd_sysfs: error-check value stored in jobid_var
  lustre: obdclass: discard process_quota_config
  lustre: obdclass: remove unnecessary code from lustre_init_lsi()
  lustre: ldlm: discard l_lock from struct ldlm_lock.
  lustre: ldlm: don't access l_resource when not locked.
  lustre: ldlm: drop SLAB_TYPESAFE_BY_RCU from ldlm_lock slab.

Patrick Farrell (1):
  lustre: llite: ll_fault fixes

 fs/lustre/include/lustre_dlm.h           |  11 --
 fs/lustre/include/lustre_export.h        |   1 -
 fs/lustre/include/lustre_handles.h       |  22 +--
 fs/lustre/include/lustre_import.h        |   2 -
 fs/lustre/include/lustre_net.h           |   4 +-
 fs/lustre/include/obd.h                  |  45 +++---
 fs/lustre/include/obd_class.h            |  10 +-
 fs/lustre/include/obd_support.h          |  10 --
 fs/lustre/ldlm/l_lock.c                  |  20 ++-
 fs/lustre/ldlm/ldlm_internal.h           |   2 -
 fs/lustre/ldlm/ldlm_lib.c                |   2 +-
 fs/lustre/ldlm/ldlm_lock.c               | 101 ++++++-------
 fs/lustre/ldlm/ldlm_lockd.c              |  24 ++-
 fs/lustre/ldlm/ldlm_pool.c               |  18 +--
 fs/lustre/ldlm/ldlm_resource.c           |   9 +-
 fs/lustre/llite/llite_internal.h         |   3 +-
 fs/lustre/llite/llite_lib.c              |   9 +-
 fs/lustre/llite/llite_mmap.c             |   6 +-
 fs/lustre/llite/lproc_llite.c            |  45 ++++--
 fs/lustre/llite/vvp_dev.c                |   1 +
 fs/lustre/llite/vvp_io.c                 |  28 +++-
 fs/lustre/lmv/lmv_obd.c                  |   4 +-
 fs/lustre/lov/lov_obd.c                  |   2 +-
 fs/lustre/lov/lov_object.c               |   6 +-
 fs/lustre/mdc/mdc_request.c              |   6 +-
 fs/lustre/mgc/mgc_request.c              |  13 +-
 fs/lustre/obdclass/class_obd.c           |  27 +---
 fs/lustre/obdclass/genops.c              | 247 +++++++++++++------------------
 fs/lustre/obdclass/lprocfs_status.c      |  20 +--
 fs/lustre/obdclass/lu_object.c           |   2 +-
 fs/lustre/obdclass/lustre_handles.c      |  62 +++-----
 fs/lustre/obdclass/obd_config.c          |  30 ----
 fs/lustre/obdclass/obd_mount.c           |   6 +-
 fs/lustre/obdclass/obd_sysfs.c           |  21 ++-
 fs/lustre/obdecho/echo_client.c          |   4 +-
 fs/lustre/osc/osc_request.c              |   2 +-
 fs/lustre/ptlrpc/client.c                |   2 +-
 fs/lustre/ptlrpc/service.c               |   4 +-
 include/uapi/linux/lustre/lustre_ioctl.h |   1 -
 39 files changed, 352 insertions(+), 480 deletions(-)

-- 
1.8.3.1

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

end of thread, other threads:[~2019-06-01  0:38 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-20 12:50 [lustre-devel] [PATCH v2 00/29] More lustre patches James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 01/29] lustre: llite: ll_fault fixes James Simmons
2019-05-22  3:54   ` NeilBrown
2019-05-22 12:48     ` Patrick Farrell
2019-05-22 23:26       ` NeilBrown
2019-05-23  0:13         ` Patrick Farrell
2019-05-22 19:06     ` James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 02/29] lustre: llite: fix error in vvp_pgcache seqfile James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 03/29] lustre: llite: replace lli_trunc_sem James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 04/29] lustre: lov: use GFP_NOFS to allocate lo_entries James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 05/29] lustre: llite: don't use class_setup_tunables() James Simmons
2019-05-22  4:22   ` NeilBrown
2019-05-22 18:58     ` James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 06/29] lustre: embed typ_kobj in obd_type James Simmons
2019-05-22  5:20   ` NeilBrown
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 07/29] lustre: obd: collect all resource releasing for obj_type James Simmons
2019-05-22  6:49   ` NeilBrown
2019-05-22 18:51   ` James Simmons
2019-05-22 22:07     ` Andreas Dilger
2019-06-01  0:38       ` James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 08/29] lustre: obd_type: use typ_kobj.name as typ_name James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 09/29] lustre: obd_type: discard obd_types linked list James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 10/29] lustre: obd_type: discard obd_type_lock James Simmons
2019-05-22  6:53   ` NeilBrown
2019-05-22 19:24     ` James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 11/29] lustre: obdclass: don't copy ops structures in to new type James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 12/29] lustre: obdclass: fix module load locking James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 13/29] lustre: convert rsi_sem to a spinlock James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 14/29] lustre: ldlm: discard varname in ldlm_pool James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 15/29] lustre: lprocfs: use log2.h macros instead of shift loop James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 16/29] lustre: handles: discard h_owner in favour of h_ops James Simmons
2019-05-20 12:50 ` [lustre-devel] [PATCH v2 17/29] lustre: handle: move refcount into the lustre_handle James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 18/29] lustre: discard OBD_FREE_RCU James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 19/29] lustre: portals_handle: rename ops to owner James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 20/29] lustre: portals_handle: remove locking from class_handle2object() James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 21/29] lustre: portals_handle: use hlist for hash lists James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 22/29] lustre: portals_handle: discard h_lock James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 23/29] lustre: remove unused fields from struct obd_device James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 24/29] lustre: obd_sysfs: error-check value stored in jobid_var James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 25/29] lustre: obdclass: discard process_quota_config James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 26/29] lustre: obdclass: remove unnecessary code from lustre_init_lsi() James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH 27/29] lustre: ldlm: discard l_lock from struct ldlm_lock James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 28/29] lustre: ldlm: don't access l_resource when not locked James Simmons
2019-05-20 12:51 ` [lustre-devel] [PATCH v2 29/29] lustre: ldlm: drop SLAB_TYPESAFE_BY_RCU from ldlm_lock slab 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.