lustre-devel-lustre.org archive mirror
 help / color / mirror / Atom feed
* [lustre-devel] [PATCH 00/24] lustre: update to OpenSFS Jan 13, 2022
@ 2022-01-14  1:37 James Simmons
  2022-01-14  1:37 ` [lustre-devel] [PATCH 01/24] lustre: osc: don't have extra gpu call James Simmons
                   ` (23 more replies)
  0 siblings, 24 replies; 25+ messages in thread
From: James Simmons @ 2022-01-14  1:37 UTC (permalink / raw)
  To: Andreas Dilger, Oleg Drokin, NeilBrown; +Cc: Lustre Development List

Update native Linux lustre client with backport of the OpenSFS
work as of Jan 13, 2022

Alexander Zarochentsev (2):
  lustre: ptlrpc: make rq_replied flag always correct
  lustre: mgc: do not ignore target registration failure

Alexey Lyashkov (2):
  lustre: osc: don't have extra gpu call
  lnet: o2iblnd: cleanup

Andreas Dilger (1):
  lustre: mdc: GET(X)ATTR to READPAGE portal

Chris Horn (1):
  lnet: Skip router discovery on send path

Etienne AUJAMES (1):
  lnet: libcfs: set x->ls_len to 0 when x->ls_str is NULL

James Simmons (1):
  lustre: llite: make foreign symlinks aware of mount namespaces

Lai Siyao (4):
  lustre: lmv: set default LMV for "lfs mkdir -c 1"
  lustre: lmv: improve MDT QOS space balance
  lustre: llite: access striped directory with missing stripe
  lustre: llite: revalidate dentry if LOOKUP lock fetched

Lei Feng (1):
  lustre: uapi: set default max-inherit to 3

Li Dongyang (1):
  lustre: llite: add trusted.projid virtual xattr

Patrick Farrell (8):
  lustre: lov: Cache stripe offset calculation
  lnet: libcfs: Remove D_TTY
  lustre: llite: Add D_IOTRACE
  lustre: llite: Add start_idx debug
  lustre: llite: Switch pcc to lookup_one_len
  lustre: llite: Simplify cda_no_aio_complete use
  lustre: osc: Always set aio in anchor
  lustre: llite: Implement lower/upper aio

Serguei Smirnov (2):
  lnet: o2iblnd: treat cmid->device == NULL as an error
  lnet: socklnd: decrement connection counters on close

 fs/lustre/include/cl_object.h           |   7 +-
 fs/lustre/include/obd.h                 |   9 ++-
 fs/lustre/include/obd_class.h           |   7 +-
 fs/lustre/llite/dcache.c                |  19 ++++-
 fs/lustre/llite/dir.c                   |  45 ++++++++---
 fs/lustre/llite/file.c                  |  16 +++-
 fs/lustre/llite/llite_foreign_symlink.c |   8 +-
 fs/lustre/llite/llite_internal.h        |  14 +++-
 fs/lustre/llite/llite_lib.c             |   7 +-
 fs/lustre/llite/llite_mmap.c            |  13 +++-
 fs/lustre/llite/llite_nfs.c             |   2 +-
 fs/lustre/llite/namei.c                 |   6 +-
 fs/lustre/llite/pcc.c                   | 119 +++++++++++++++++++---------
 fs/lustre/llite/rw.c                    |  31 +++++---
 fs/lustre/llite/rw26.c                  |  34 ++++++--
 fs/lustre/llite/statahead.c             |   6 +-
 fs/lustre/llite/xattr.c                 |  15 ++++
 fs/lustre/llite/xattr_cache.c           |  15 ++++
 fs/lustre/lmv/lmv_intent.c              |   4 +-
 fs/lustre/lmv/lmv_obd.c                 | 133 ++++++++++++++++++--------------
 fs/lustre/lov/lov_cl_internal.h         |   9 ++-
 fs/lustre/lov/lov_io.c                  |   6 ++
 fs/lustre/lov/lov_page.c                |  57 ++++++++++----
 fs/lustre/mdc/mdc_request.c             |  14 +++-
 fs/lustre/mgc/mgc_request.c             |   5 +-
 fs/lustre/obdclass/cl_io.c              |  56 ++++++++++----
 fs/lustre/osc/osc_request.c             |   2 +-
 fs/lustre/ptlrpc/ptlrpc_internal.h      |   1 +
 include/uapi/linux/lnet/libcfs_debug.h  |   4 +-
 include/uapi/linux/lustre/lustre_idl.h  |   1 +
 include/uapi/linux/lustre/lustre_user.h |  16 ++--
 net/lnet/klnds/o2iblnd/o2iblnd.c        |  15 ++--
 net/lnet/klnds/o2iblnd/o2iblnd_cb.c     |  43 ++++-------
 net/lnet/klnds/socklnd/socklnd.c        |  69 ++++++++++++++---
 net/lnet/libcfs/libcfs_string.c         |   1 +
 net/lnet/libcfs/tracefile.c             |  51 +-----------
 net/lnet/lnet/lib-move.c                |  23 ++++--
 37 files changed, 582 insertions(+), 301 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] 25+ messages in thread

end of thread, other threads:[~2022-01-14  1:39 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-14  1:37 [lustre-devel] [PATCH 00/24] lustre: update to OpenSFS Jan 13, 2022 James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 01/24] lustre: osc: don't have extra gpu call James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 02/24] lustre: llite: add trusted.projid virtual xattr James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 03/24] lnet: o2iblnd: cleanup James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 04/24] lustre: ptlrpc: make rq_replied flag always correct James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 05/24] lustre: mgc: do not ignore target registration failure James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 06/24] lustre: llite: make foreign symlinks aware of mount namespaces James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 07/24] lustre: lov: Cache stripe offset calculation James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 08/24] lnet: o2iblnd: treat cmid->device == NULL as an error James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 09/24] lustre: lmv: set default LMV for "lfs mkdir -c 1" James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 10/24] lnet: socklnd: decrement connection counters on close James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 11/24] lustre: lmv: improve MDT QOS space balance James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 12/24] lustre: llite: access striped directory with missing stripe James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 13/24] lnet: libcfs: Remove D_TTY James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 14/24] lustre: llite: Add D_IOTRACE James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 15/24] lustre: llite: Add start_idx debug James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 16/24] lnet: Skip router discovery on send path James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 17/24] lustre: mdc: GET(X)ATTR to READPAGE portal James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 18/24] lnet: libcfs: set x->ls_len to 0 when x->ls_str is NULL James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 19/24] lustre: uapi: set default max-inherit to 3 James Simmons
2022-01-14  1:37 ` [lustre-devel] [PATCH 20/24] lustre: llite: Switch pcc to lookup_one_len James Simmons
2022-01-14  1:38 ` [lustre-devel] [PATCH 21/24] lustre: llite: revalidate dentry if LOOKUP lock fetched James Simmons
2022-01-14  1:38 ` [lustre-devel] [PATCH 22/24] lustre: llite: Simplify cda_no_aio_complete use James Simmons
2022-01-14  1:38 ` [lustre-devel] [PATCH 23/24] lustre: osc: Always set aio in anchor James Simmons
2022-01-14  1:38 ` [lustre-devel] [PATCH 24/24] lustre: llite: Implement lower/upper aio 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).