lustre-devel-lustre.org archive mirror
 help / color / mirror / Atom feed
* [lustre-devel] [PATCH 00/15] lustre: sync to OpenSFS as of Aug 22, 2021
@ 2021-08-23  2:27 James Simmons
  2021-08-23  2:27 ` [lustre-devel] [PATCH 01/15] lustre: uapi: support fixed directory layout James Simmons
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: James Simmons @ 2021-08-23  2:27 UTC (permalink / raw)
  To: Andreas Dilger, Oleg Drokin, NeilBrown; +Cc: Lustre Development List

Update to latest OpenSFS work which is at 2.14.54

Alex Zhuravlev (1):
  lustre: mgc: rework mgc_apply_recover_logs() for gcc10

Amir Shehata (3):
  lnet: keep in insync to change due to GPU Direct Support
  lustre: osc: Support RDMA only pages
  lnet: peer state to lock primary nid

Chris Horn (3):
  lnet: Reflect ni_fatal in NI status
  lnet: Provide kernel API for adding peers
  lustre: obdclass: Add peer/peer NI when processing llog

James Simmons (1):
  lustre: obdclass: reintroduce lu_ref

Lai Siyao (1):
  lustre: uapi: support fixed directory layout

Mikhail Pershin (1):
  lustre: mdt: implement fallocate in MDC/MDT

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

Qian Yingjin (1):
  lustre: pcc: add LCM_FL_PCC_RDONLY layout flag

Serguei Smirnov (2):
  lnet: socklnd: allow dynamic setting of conns_per_peer
  lnet: socklnd: set conns_per_peer based on link speed

Shaun Tancheff (1):
  lustre: llite: Proved an abstraction for AS_EXITING

 fs/lustre/Kconfig                          |   9 +
 fs/lustre/include/lu_ref.h                 | 104 +++++++-
 fs/lustre/include/lustre_osc.h             |  10 +-
 fs/lustre/ldlm/ldlm_lib.c                  |   3 +-
 fs/lustre/llite/llite_internal.h           |   7 +
 fs/lustre/llite/vvp_object.c               |   2 +-
 fs/lustre/mdc/mdc_dev.c                    |  29 ++-
 fs/lustre/mgc/mgc_request.c                |  24 +-
 fs/lustre/obdclass/Makefile                |   3 +-
 fs/lustre/obdclass/cl_io.c                 |   8 +
 fs/lustre/obdclass/lu_ref.c                | 393 +++++++++++++++++++++++++++++
 fs/lustre/obdclass/lustre_peer.c           |  18 +-
 fs/lustre/osc/osc_io.c                     |   7 +-
 fs/lustre/osc/osc_request.c                |  18 +-
 fs/lustre/ptlrpc/wiretest.c                |   3 +
 include/linux/lnet/api.h                   |   1 +
 include/linux/lnet/lib-lnet.h              |  19 +-
 include/linux/lnet/lib-types.h             |  32 +++
 include/uapi/linux/lnet/libcfs_ioctl.h     |   3 +-
 include/uapi/linux/lnet/lnet-dlc.h         |  14 +
 include/uapi/linux/lustre/lustre_user.h    |  18 +-
 include/uapi/linux/lustre/lustre_ver.h     |   4 +-
 net/lnet/klnds/o2iblnd/o2iblnd.c           |   1 +
 net/lnet/klnds/o2iblnd/o2iblnd.h           |   9 +-
 net/lnet/klnds/o2iblnd/o2iblnd_cb.c        |  16 +-
 net/lnet/klnds/socklnd/socklnd.c           |  70 ++---
 net/lnet/klnds/socklnd/socklnd.h           |   4 +
 net/lnet/klnds/socklnd/socklnd_modparams.c | 126 ++++++++-
 net/lnet/lnet/api-ni.c                     |  59 ++++-
 net/lnet/lnet/lib-move.c                   |  62 ++++-
 net/lnet/lnet/peer.c                       |  60 ++++-
 net/lnet/lnet/router_proc.c                |   2 +-
 32 files changed, 1007 insertions(+), 131 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] 16+ messages in thread

end of thread, other threads:[~2021-08-23  2:28 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-23  2:27 [lustre-devel] [PATCH 00/15] lustre: sync to OpenSFS as of Aug 22, 2021 James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 01/15] lustre: uapi: support fixed directory layout James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 02/15] lustre: pcc: add LCM_FL_PCC_RDONLY layout flag James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 03/15] lustre: mdt: implement fallocate in MDC/MDT James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 04/15] lnet: Reflect ni_fatal in NI status James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 05/15] lustre: obdclass: reintroduce lu_ref James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 06/15] lnet: keep in insync to change due to GPU Direct Support James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 07/15] lustre: osc: Support RDMA only pages James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 08/15] lustre: mgc: rework mgc_apply_recover_logs() for gcc10 James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 09/15] lnet: socklnd: allow dynamic setting of conns_per_peer James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 10/15] lnet: Provide kernel API for adding peers James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 11/15] lustre: obdclass: Add peer/peer NI when processing llog James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 12/15] lnet: peer state to lock primary nid James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 13/15] lustre: llite: Proved an abstraction for AS_EXITING James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 14/15] lnet: socklnd: set conns_per_peer based on link speed James Simmons
2021-08-23  2:27 ` [lustre-devel] [PATCH 15/15] lustre: update version to 2.14.54 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).