lustre-devel-lustre.org archive mirror
 help / color / mirror / Atom feed
* [lustre-devel] [PATCH 00/13] lustre: sync to OpenSFS tree as of May 14, 2021
@ 2021-05-15 13:05 James Simmons
  2021-05-15 13:05 ` [lustre-devel] [PATCH 01/13] lnet: Allow delayed sends James Simmons
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: James Simmons @ 2021-05-15 13:05 UTC (permalink / raw)
  To: Andreas Dilger, Oleg Drokin, NeilBrown; +Cc: Lustre Development List

Next batch of patches from the OpenSFS tree ported the native Linux
client.

Andreas Dilger (1):
  lustre: lmv: qos stay on current MDT if less full

Bobi Jam (1):
  lustre: lov: correctly handling sub-lock init failure

Chris Horn (3):
  lnet: Allow delayed sends
  lnet: Local NI must be on same net as next-hop
  lnet: Correct the router ping interval calculation

Lai Siyao (2):
  lustre; obdclass: server qos penalty miscaculated
  lustre: lmv: add default LMV inherit depth

Nikitas Angelinas (1):
  lustre: ptlrpc: remove might_sleep() in sptlrpc_gc_del_sec()

Oleg Drokin (1):
  lustre: llite: Introduce inode open heat counter

Sebastien Buisson (1):
  lustre: sec: rework includes for client encryption

Serguei Smirnov (1):
  lnet: socklnd: add conns_per_peer parameter

Wang Shilong (2):
  lustre: readahead: export pages directly without RA
  lustre: readahead: fix reserving for unaliged read

 fs/lustre/include/lu_object.h              |  30 +++++-
 fs/lustre/include/lustre_crypto.h          | 158 ++++++++++++++++-------------
 fs/lustre/include/lustre_lmv.h             |   8 +-
 fs/lustre/include/obd.h                    |  10 +-
 fs/lustre/llite/crypto.c                   |   6 +-
 fs/lustre/llite/dir.c                      |  20 ++--
 fs/lustre/llite/file.c                     |  92 +++++++++++++----
 fs/lustre/llite/llite_internal.h           |  50 +++++----
 fs/lustre/llite/llite_lib.c                |  11 +-
 fs/lustre/llite/lproc_llite.c              | 112 +++++++++++++++++++-
 fs/lustre/llite/namei.c                    |  37 ++++---
 fs/lustre/llite/rw.c                       |  13 ++-
 fs/lustre/llite/super25.c                  |   4 +-
 fs/lustre/llite/vvp_io.c                   |  18 ++--
 fs/lustre/lmv/lmv_obd.c                    |  84 ++++++++++++---
 fs/lustre/lov/lov_lock.c                   |   2 +
 fs/lustre/obdclass/lu_tgt_descs.c          |  36 +++----
 fs/lustre/osc/osc_request.c                |  12 +--
 fs/lustre/ptlrpc/pack_generic.c            |   5 +-
 fs/lustre/ptlrpc/sec_gc.c                  |   2 -
 include/linux/lnet/lib-lnet.h              |   1 +
 include/linux/lnet/lib-types.h             |   4 +-
 include/uapi/linux/lustre/lustre_user.h    |  37 ++++++-
 net/lnet/klnds/socklnd/socklnd.c           |  92 +++++++++++++++--
 net/lnet/klnds/socklnd/socklnd.h           |  23 ++++-
 net/lnet/klnds/socklnd/socklnd_cb.c        |   3 +-
 net/lnet/klnds/socklnd/socklnd_modparams.c |   9 ++
 net/lnet/lnet/lib-move.c                   |  34 +++----
 net/lnet/lnet/net_fault.c                  |  24 ++++-
 net/lnet/lnet/router.c                     |  57 +++++++----
 30 files changed, 726 insertions(+), 268 deletions(-)

-- 
1.8.3.1

_______________________________________________
lustre-devel mailing list
lustre-devel@lists.lustre.org
http://lists.lustre.org/listinfo.cgi/lustre-devel-lustre.org

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

end of thread, other threads:[~2021-05-15 13:06 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-15 13:05 [lustre-devel] [PATCH 00/13] lustre: sync to OpenSFS tree as of May 14, 2021 James Simmons
2021-05-15 13:05 ` [lustre-devel] [PATCH 01/13] lnet: Allow delayed sends James Simmons
2021-05-15 13:05 ` [lustre-devel] [PATCH 02/13] lustre: lov: correctly handling sub-lock init failure James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 03/13] lnet: Local NI must be on same net as next-hop James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 04/13] lnet: socklnd: add conns_per_peer parameter James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 05/13] lustre: readahead: export pages directly without RA James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 06/13] lustre: readahead: fix reserving for unaliged read James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 07/13] lustre: sec: rework includes for client encryption James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 08/13] lustre: ptlrpc: remove might_sleep() in sptlrpc_gc_del_sec() James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 09/13] lustre; obdclass: server qos penalty miscaculated James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 10/13] lustre: lmv: add default LMV inherit depth James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 11/13] lustre: lmv: qos stay on current MDT if less full James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 12/13] lnet: Correct the router ping interval calculation James Simmons
2021-05-15 13:06 ` [lustre-devel] [PATCH 13/13] lustre: llite: Introduce inode open heat counter James Simmons

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).