mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 00/14] Lustre fixes
@ 2016-11-03  1:24 Oleg Drokin
  2016-11-03  1:24 ` [PATCH 01/14] staging/lustre/ldlm: Drop unused blocking_refs flock field Oleg Drokin
                   ` (13 more replies)
  0 siblings, 14 replies; 29+ messages in thread
From: Oleg Drokin @ 2016-11-03  1:24 UTC (permalink / raw)
  To: Greg Kroah-Hartman, devel, Andreas Dilger, James Simmons
  Cc: Linux Kernel Mailing List, Lustre Development List, Oleg Drokin

This batch of patches represents mostly recent fixes,
also a couple of cleanups and a couple of changes that fixes depend on.

Amir Shehata (1):
  staging/lustre/ptlrpc: Correctly calculate hrp->hrp_nthrs

Andrew Perepechko (1):
  staging/lustre/llite: drop_caches hangs in cl_inode_fini()

Andriy Skulysh (1):
  staging/lustre: conflicting PW & PR extent locks on a client

Bobi Jam (2):
  staging/lustre/llite: protect from accessing NULL lli_clob
  staging/lustre/llite: update ras window correctly

Hongchao Zhang (2):
  staging/lustre/ldlm: fix export reference problem
  staging/lustre/ldlm: engage ELC for all ldlm enqueue req

Jinshan Xiong (2):
  staging/lustre: Get rid of cl_env hash table
  staging/lustre/llite: do not clear uptodate bit in page delete

Niu Yawei (1):
  staging/lustre/llite: clear inode timestamps after losing UPDATE lock

Oleg Drokin (3):
  staging/lustre/ldlm: Drop unused blocking_refs flock field
  staging/lustre/ldlm: Reinstate ldlm_enqueue_pack()
  staging/lustre: Get rid of LIBLUSTRE_CLIENT and its users

Patrick Farrell (1):
  staging/lustre/ptlrpc: Suppress error for flock requests

 drivers/staging/lustre/lustre/include/cl_object.h  |  22 --
 drivers/staging/lustre/lustre/include/lustre_dlm.h |   2 -
 drivers/staging/lustre/lustre/include/lustre_lib.h |   2 -
 .../staging/lustre/lustre/include/obd_support.h    |   3 +
 drivers/staging/lustre/lustre/ldlm/ldlm_extent.c   |  20 ++
 drivers/staging/lustre/lustre/ldlm/ldlm_lib.c      |   3 +
 drivers/staging/lustre/lustre/ldlm/ldlm_pool.c     |   9 -
 drivers/staging/lustre/lustre/ldlm/ldlm_request.c  |  61 ++--
 drivers/staging/lustre/lustre/llite/file.c         |  26 +-
 drivers/staging/lustre/lustre/llite/lcommon_cl.c   |  11 +-
 drivers/staging/lustre/lustre/llite/lcommon_misc.c |   8 +-
 drivers/staging/lustre/lustre/llite/llite_mmap.c   |  59 ++--
 drivers/staging/lustre/lustre/llite/namei.c        |  10 +
 drivers/staging/lustre/lustre/llite/rw.c           |  21 +-
 drivers/staging/lustre/lustre/llite/rw26.c         |  52 +--
 drivers/staging/lustre/lustre/llite/vvp_page.c     |   1 -
 drivers/staging/lustre/lustre/lov/lov_io.c         |   5 -
 drivers/staging/lustre/lustre/lov/lov_object.c     |   7 +-
 .../staging/lustre/lustre/obdclass/cl_internal.h   |  23 --
 drivers/staging/lustre/lustre/obdclass/cl_io.c     |   1 -
 drivers/staging/lustre/lustre/obdclass/cl_object.c | 389 ++++-----------------
 drivers/staging/lustre/lustre/obdclass/lu_object.c |   4 -
 .../staging/lustre/lustre/obdecho/echo_client.c    |  14 +-
 drivers/staging/lustre/lustre/osc/osc_cache.c      |   6 +-
 drivers/staging/lustre/lustre/osc/osc_lock.c       | 116 +++---
 drivers/staging/lustre/lustre/osc/osc_page.c       |   6 +-
 drivers/staging/lustre/lustre/osc/osc_request.c    |   1 +
 drivers/staging/lustre/lustre/ptlrpc/client.c      |   4 +-
 drivers/staging/lustre/lustre/ptlrpc/import.c      |  19 +-
 drivers/staging/lustre/lustre/ptlrpc/service.c     |   3 +-
 30 files changed, 298 insertions(+), 610 deletions(-)

-- 
2.7.4

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

end of thread, other threads:[~2016-11-07  1:58 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-03  1:24 [PATCH 00/14] Lustre fixes Oleg Drokin
2016-11-03  1:24 ` [PATCH 01/14] staging/lustre/ldlm: Drop unused blocking_refs flock field Oleg Drokin
2016-11-07  1:38   ` James Simmons
2016-11-03  1:24 ` [PATCH 02/14] staging/lustre/ldlm: fix export reference problem Oleg Drokin
2016-11-07  1:37   ` James Simmons
2016-11-03  1:24 ` [PATCH 03/14] staging/lustre: conflicting PW & PR extent locks on a client Oleg Drokin
2016-11-07  1:52   ` James Simmons
2016-11-03  1:24 ` [PATCH 04/14] staging/lustre/llite: clear inode timestamps after losing UPDATE lock Oleg Drokin
2016-11-07  1:38   ` James Simmons
2016-11-03  1:24 ` [PATCH 05/14] staging/lustre: Get rid of cl_env hash table Oleg Drokin
2016-11-07  1:53   ` James Simmons
2016-11-03  1:24 ` [PATCH 06/14] staging/lustre/llite: drop_caches hangs in cl_inode_fini() Oleg Drokin
2016-11-07  1:54   ` James Simmons
2016-11-03  1:24 ` [PATCH 07/14] staging/lustre/ldlm: Reinstate ldlm_enqueue_pack() Oleg Drokin
2016-11-07  1:53   ` James Simmons
2016-11-03  1:24 ` [PATCH 08/14] staging/lustre/ldlm: engage ELC for all ldlm enqueue req Oleg Drokin
2016-11-07  1:55   ` James Simmons
2016-11-03  1:24 ` [PATCH 09/14] staging/lustre/ptlrpc: Suppress error for flock requests Oleg Drokin
2016-11-07  1:57   ` James Simmons
2016-11-03  1:25 ` [PATCH 10/14] staging/lustre/llite: protect from accessing NULL lli_clob Oleg Drokin
2016-11-07  1:55   ` James Simmons
2016-11-03  1:25 ` [PATCH 11/14] staging/lustre/ptlrpc: Correctly calculate hrp->hrp_nthrs Oleg Drokin
2016-11-07  1:58   ` James Simmons
2016-11-03  1:25 ` [PATCH 12/14] staging/lustre/llite: update ras window correctly Oleg Drokin
2016-11-07  1:57   ` James Simmons
2016-11-03  1:25 ` [PATCH 13/14] staging/lustre/llite: do not clear uptodate bit in page delete Oleg Drokin
2016-11-07  1:56   ` James Simmons
2016-11-03  1:25 ` [PATCH 14/14] staging/lustre: Get rid of LIBLUSTRE_CLIENT and its users Oleg Drokin
2016-11-07  1:56   ` James Simmons

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