lustre-devel-lustre.org archive mirror
 help / color / mirror / Atom feed
* [lustre-devel] [PATCH 00/13] lustre: port OpenSFS updates Dec 29, 2021
@ 2021-12-29 14:51 James Simmons
  2021-12-29 14:51 ` [lustre-devel] [PATCH 01/13] lustre: sec: filename encryption - digest support James Simmons
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: James Simmons @ 2021-12-29 14:51 UTC (permalink / raw)
  To: Andreas Dilger, Oleg Drokin, NeilBrown; +Cc: Lustre Development List

Port the latest OpenSFS work to the Linux client as of Dec 29,
2021

Alexander Boyko (1):
  lustre: mdc: add client tunable to disable LSOM update

Alexey Lyashkov (1):
  lustre: ptlrpc: use a cached value

Arshad Hussain (1):
  lustre: quota: fallocate send UID/GID for quota

Chris Horn (2):
  lnet: Revert "lnet: Lock primary NID logic"
  lnet: Race on discovery queue

James Simmons (1):
  lnet: o2iblnd: convert ibp_refcount to a kref

Lai Siyao (1):
  lustre: dne: dir migration in non-recursive mode

Oleg Drokin (1):
  lustre: update version to 2.14.56

Qian Yingjin (1):
  lustre: llite: set ra_pages of backing_dev_info with 0

Sebastien Buisson (3):
  lustre: sec: filename encryption - digest support
  lustre: sec: no encryption key migrate/extend/resync/split
  lustre: sec: fix handling of encrypted file with long name

Serguei Smirnov (1):
  lnet: socklnd: expect two control connections maximum

 fs/lustre/include/cl_object.h           |   2 +
 fs/lustre/include/lustre_net.h          |   2 +-
 fs/lustre/include/obd.h                 |   4 +-
 fs/lustre/llite/crypto.c                | 175 +++++++++++++++++++++++++++-----
 fs/lustre/llite/dir.c                   |  20 +++-
 fs/lustre/llite/file.c                  |  66 ++++++++----
 fs/lustre/llite/llite_internal.h        |  25 ++++-
 fs/lustre/llite/llite_lib.c             | 127 +++++++++++++++++++++--
 fs/lustre/llite/namei.c                 |  83 ++++++++-------
 fs/lustre/llite/rw26.c                  |   2 +-
 fs/lustre/llite/statahead.c             |   8 +-
 fs/lustre/llite/vvp_io.c                |   3 -
 fs/lustre/llite/xattr.c                 |   4 +-
 fs/lustre/lmv/lmv_obd.c                 |   5 +
 fs/lustre/lov/lov_io.c                  |   4 +
 fs/lustre/mdc/lproc_mdc.c               |  29 ++++++
 fs/lustre/mdc/mdc_lib.c                 |   2 +
 fs/lustre/mdc/mdc_locks.c               |   8 +-
 fs/lustre/mdc/mdc_request.c             |  13 ++-
 fs/lustre/osc/osc_io.c                  |   8 +-
 fs/lustre/osc/osc_request.c             |  42 ++++++--
 fs/lustre/ptlrpc/pack_generic.c         |   8 +-
 fs/lustre/ptlrpc/ptlrpc_internal.h      |   1 +
 fs/lustre/ptlrpc/ptlrpc_module.c        |   1 +
 fs/lustre/ptlrpc/sec_null.c             |   4 +-
 fs/lustre/ptlrpc/sec_plain.c            |   2 +-
 fs/lustre/ptlrpc/wiretest.c             |   6 ++
 include/uapi/linux/lustre/lustre_idl.h  |  16 ++-
 include/uapi/linux/lustre/lustre_user.h |   7 +-
 include/uapi/linux/lustre/lustre_ver.h  |   4 +-
 net/lnet/klnds/o2iblnd/o2iblnd.c        |  11 +-
 net/lnet/klnds/o2iblnd/o2iblnd.h        |  35 ++++---
 net/lnet/klnds/socklnd/socklnd.h        |   2 +-
 net/lnet/lnet/peer.c                    | 114 +++++++--------------
 34 files changed, 607 insertions(+), 236 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-12-29 14:52 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-29 14:51 [lustre-devel] [PATCH 00/13] lustre: port OpenSFS updates Dec 29, 2021 James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 01/13] lustre: sec: filename encryption - digest support James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 02/13] lnet: Revert "lnet: Lock primary NID logic" James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 03/13] lustre: quota: fallocate send UID/GID for quota James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 04/13] lustre: mdc: add client tunable to disable LSOM update James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 05/13] lustre: dne: dir migration in non-recursive mode James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 06/13] lustre: update version to 2.14.56 James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 07/13] lustre: sec: no encryption key migrate/extend/resync/split James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 08/13] lustre: sec: fix handling of encrypted file with long name James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 09/13] lnet: socklnd: expect two control connections maximum James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 10/13] lustre: ptlrpc: use a cached value James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 11/13] lnet: Race on discovery queue James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 12/13] lnet: o2iblnd: convert ibp_refcount to a kref James Simmons
2021-12-29 14:51 ` [lustre-devel] [PATCH 13/13] lustre: llite: set ra_pages of backing_dev_info with 0 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).