From: James Simmons <jsimmons@infradead.org>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
devel@driverdev.osuosl.org,
Andreas Dilger <andreas.dilger@intel.com>,
Oleg Drokin <oleg.drokin@intel.com>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Lustre Development List <lustre-devel@lists.lustre.org>,
James Simmons <jsimmons@infradead.org>
Subject: [PATCH 00/14] staging: lustre: missing fixes from lustre 2.8
Date: Sat, 18 Feb 2017 16:47:01 -0500 [thread overview]
Message-ID: <1487454435-4895-1-git-send-email-jsimmons@infradead.org> (raw)
This patch series is a batch of fixes from the lustre 2.8
release that is missing from the upstream client. These
patches are dependent on the order applied.
Alex Zhuravlev (1):
staging: lustre: llog: limit file size of plain logs
Andreas Dilger (1):
staging: lustre: llite: remove extraneous export parameter
Bobi Jam (2):
staging: lustre: llite: lower message level for ll_setattr_raw()
staging: lustre: llite: omit to update wire data
James Simmons (1):
staging: lustre: lprocfs: move lprocfs_stats_[un]lock to a source file
Jinshan Xiong (4):
staging: lustre: osc: remove obsolete asserts
staging: lustre: lov: cleanup when cl_io_iter_init() fails
staging: lustre: ldlm: handle ldlm lock cancel race when evicting client.
staging: lustre: osc: further LRU OSC cleanup after eviction
Niu Yawei (1):
staging: lustre: ldlm: fix race of starting bl threads
Vitaly Fertman (2):
staging: lustre: ldlm: reduce ldlm pool recalc window
staging: lustre: ldlm: disconnect speedup
Yang Sheng (1):
staging: lustre: lov: trying smaller memory allocations
wang di (1):
staging: lustre: llog: change lgh_hdr_lock to mutex
drivers/staging/lustre/lustre/include/cl_object.h | 13 +-
.../staging/lustre/lustre/include/lprocfs_status.h | 120 ++------------
drivers/staging/lustre/lustre/include/lustre_dlm.h | 11 +-
.../lustre/lustre/include/lustre_dlm_flags.h | 3 +
drivers/staging/lustre/lustre/include/lustre_log.h | 2 +-
.../staging/lustre/lustre/include/obd_support.h | 1 +
drivers/staging/lustre/lustre/ldlm/ldlm_internal.h | 5 +-
drivers/staging/lustre/lustre/ldlm/ldlm_lock.c | 47 ++++--
drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c | 178 +++++++++++++--------
drivers/staging/lustre/lustre/ldlm/ldlm_pool.c | 7 +-
drivers/staging/lustre/lustre/ldlm/ldlm_request.c | 14 +-
drivers/staging/lustre/lustre/ldlm/ldlm_resource.c | 2 +-
drivers/staging/lustre/lustre/llite/file.c | 49 +++---
drivers/staging/lustre/lustre/llite/glimpse.c | 4 +-
drivers/staging/lustre/lustre/llite/lcommon_cl.c | 8 +-
drivers/staging/lustre/lustre/llite/lcommon_misc.c | 2 +-
.../staging/lustre/lustre/llite/llite_internal.h | 2 +-
drivers/staging/lustre/lustre/llite/llite_lib.c | 14 +-
drivers/staging/lustre/lustre/llite/llite_mmap.c | 4 +-
drivers/staging/lustre/lustre/llite/lproc_llite.c | 2 +-
drivers/staging/lustre/lustre/llite/rw.c | 2 +-
drivers/staging/lustre/lustre/llite/vvp_dev.c | 10 +-
drivers/staging/lustre/lustre/llite/vvp_io.c | 1 +
drivers/staging/lustre/lustre/llite/xattr.c | 2 +-
.../staging/lustre/lustre/lov/lov_cl_internal.h | 41 +++--
drivers/staging/lustre/lustre/lov/lov_io.c | 24 +--
drivers/staging/lustre/lustre/lov/lov_object.c | 2 +-
drivers/staging/lustre/lustre/obdclass/cl_object.c | 6 +-
drivers/staging/lustre/lustre/obdclass/llog.c | 18 ++-
.../lustre/lustre/obdclass/lprocfs_status.c | 111 +++++++++++++
.../staging/lustre/lustre/obdecho/echo_client.c | 6 +-
drivers/staging/lustre/lustre/osc/lproc_osc.c | 2 +-
drivers/staging/lustre/lustre/osc/osc_cache.c | 3 +-
.../staging/lustre/lustre/osc/osc_cl_internal.h | 4 +-
drivers/staging/lustre/lustre/osc/osc_internal.h | 3 +-
drivers/staging/lustre/lustre/osc/osc_io.c | 48 ++----
drivers/staging/lustre/lustre/osc/osc_lock.c | 60 ++++---
drivers/staging/lustre/lustre/osc/osc_object.c | 12 +-
drivers/staging/lustre/lustre/osc/osc_page.c | 77 +++++++--
drivers/staging/lustre/lustre/osc/osc_request.c | 12 +-
40 files changed, 554 insertions(+), 378 deletions(-)
--
1.8.3.1
next reply other threads:[~2017-02-18 21:57 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-18 21:47 James Simmons [this message]
2017-02-18 21:47 ` [PATCH 01/14] staging: lustre: llite: lower message level for ll_setattr_raw() James Simmons
2017-02-18 21:47 ` [PATCH 02/14] staging: lustre: llite: omit to update wire data James Simmons
2017-02-18 21:47 ` [PATCH 03/14] staging: lustre: osc: remove obsolete asserts James Simmons
2017-02-18 21:47 ` [PATCH 04/14] staging: lustre: lov: cleanup when cl_io_iter_init() fails James Simmons
2017-02-18 21:47 ` [PATCH 05/14] staging: lustre: ldlm: handle ldlm lock cancel race when evicting client James Simmons
2017-02-18 21:47 ` [PATCH 06/14] staging: lustre: osc: further LRU OSC cleanup after eviction James Simmons
2017-02-18 21:47 ` [PATCH 07/14] staging: lustre: lov: trying smaller memory allocations James Simmons
2017-02-18 21:47 ` [PATCH 08/14] staging: lustre: llite: remove extraneous export parameter James Simmons
2017-02-18 21:47 ` [PATCH 09/14] staging: lustre: ldlm: reduce ldlm pool recalc window James Simmons
2017-02-18 21:47 ` [PATCH 10/14] staging: lustre: ldlm: disconnect speedup James Simmons
2017-02-18 21:47 ` [PATCH 11/14] staging: lustre: ldlm: fix race of starting bl threads James Simmons
2017-02-18 21:47 ` [PATCH 12/14] staging: lustre: llog: change lgh_hdr_lock to mutex James Simmons
2017-02-24 16:58 ` Greg Kroah-Hartman
2017-02-18 21:47 ` [PATCH 13/14] staging: lustre: llog: limit file size of plain logs James Simmons
2017-02-24 16:59 ` Greg Kroah-Hartman
2017-02-25 3:50 ` Oleg Drokin
2017-02-25 4:04 ` Oleg Drokin
2017-02-18 21:47 ` [PATCH 14/14] staging: lustre: lprocfs: move lprocfs_stats_[un]lock to a source file James Simmons
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=1487454435-4895-1-git-send-email-jsimmons@infradead.org \
--to=jsimmons@infradead.org \
--cc=andreas.dilger@intel.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lustre-devel@lists.lustre.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
all inboxes | Powered by JetHome®