All of lore.kernel.org
 help / color / mirror / Atom feed
* [lustre-devel] [PATCH 00/18] lustre: sync to OpenSFS as of July 18, 2021
@ 2021-07-19 12:31 James Simmons
  2021-07-19 12:31 ` [lustre-devel] [PATCH 01/18] lustre: statahead: update task management code James Simmons
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: James Simmons @ 2021-07-19 12:31 UTC (permalink / raw)
  To: Andreas Dilger, Oleg Drokin, NeilBrown; +Cc: Lustre Development List

Backport patches from OpenSFS tree as of July 18, 2021.

Amir Shehata (1):
  lnet: RMDA infrastructure updates

Arshad Hussain (1):
  lnet: libcfs: Add checksum speed under /sys/fs

Bobi Jam (1):
  lustre: llite: failed ASSERTION(ldlm_has_layout(lock))

Chris Horn (1):
  lnet: Correct peer NI recovery age out calculation

Dominique Martinet (1):
  lnet: annotate LNET_WIRE_HANDLE_COOKIE_NONE as u64

Lai Siyao (2):
  lustre: lmv: compare space to mkdir on parent MDT
  lustre: llite: reset pfid after dir migration

Mike Marciniszyn (2):
  lnet: o2iblnd: Move racy NULL assignment
  lnet: o2iblnd: Avoid double posting invalidate

Mikhail Pershin (1):
  lustre: uapi: per-user changelog names and mask

Mr. NeilBrown (1):
  lustre: statahead: update task management code

Qian Yingjin (2):
  lustre: llite: simplify callback handling for async getattr
  lustre: pcc: introducing OBD_CONNECT2_PCCRO flag

Sebastien Buisson (2):
  lustre: quota: nodemap squashed root cannot bypass quota
  lustre: sec: migrate/extend/split on encrypted file

Serguei Smirnov (1):
  lnet: use ni fatal error when calculating net health

Wang Shilong (2):
  lustre: quota: add get/set project support for non-dir/file
  lustre: readahead: fix to reserve min pages

 fs/lustre/include/lu_object.h           |   3 +-
 fs/lustre/include/lustre_crypto.h       |   2 +
 fs/lustre/include/obd.h                 |  34 +--
 fs/lustre/include/obd_class.h           |   4 +-
 fs/lustre/llite/dir.c                   |   2 +
 fs/lustre/llite/file.c                  | 117 +++++++--
 fs/lustre/llite/llite_internal.h        |  12 +-
 fs/lustre/llite/llite_lib.c             |  28 ++-
 fs/lustre/llite/namei.c                 | 101 +++++++-
 fs/lustre/llite/rw.c                    |   8 +-
 fs/lustre/llite/statahead.c             | 420 ++++++++++++--------------------
 fs/lustre/lmv/lmv_obd.c                 |  23 +-
 fs/lustre/mdc/mdc_internal.h            |   3 +-
 fs/lustre/mdc/mdc_locks.c               |  31 ++-
 fs/lustre/obdclass/llog_swab.c          |  17 +-
 fs/lustre/obdclass/lu_tgt_descs.c       |  11 +-
 fs/lustre/obdclass/obd_sysfs.c          |  61 +++++
 fs/lustre/osc/osc_cache.c               |   2 +-
 fs/lustre/ptlrpc/wiretest.c             |  29 ++-
 include/linux/libcfs/libcfs_crypto.h    |   3 +
 include/linux/lnet/lib-lnet.h           |   1 +
 include/linux/lnet/lib-types.h          |   2 +
 include/uapi/linux/lnet/lnet-types.h    |   2 +-
 include/uapi/linux/lustre/lustre_idl.h  |  22 ++
 include/uapi/linux/lustre/lustre_user.h |  18 +-
 net/lnet/klnds/o2iblnd/o2iblnd.c        |   4 +-
 net/lnet/klnds/o2iblnd/o2iblnd.h        |   1 +
 net/lnet/klnds/o2iblnd/o2iblnd_cb.c     |  16 +-
 net/lnet/libcfs/linux-crypto.c          |   3 +-
 net/lnet/lnet/api-ni.c                  |   5 +-
 net/lnet/lnet/lib-md.c                  |  29 ++-
 net/lnet/lnet/peer.c                    |   3 +-
 32 files changed, 625 insertions(+), 392 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] 19+ messages in thread

end of thread, other threads:[~2021-07-19 12:33 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-19 12:31 [lustre-devel] [PATCH 00/18] lustre: sync to OpenSFS as of July 18, 2021 James Simmons
2021-07-19 12:31 ` [lustre-devel] [PATCH 01/18] lustre: statahead: update task management code James Simmons
2021-07-19 12:31 ` [lustre-devel] [PATCH 02/18] lustre: llite: simplify callback handling for async getattr James Simmons
2021-07-19 12:31 ` [lustre-devel] [PATCH 03/18] lustre: uapi: per-user changelog names and mask James Simmons
2021-07-19 12:31 ` [lustre-devel] [PATCH 04/18] lnet: Correct peer NI recovery age out calculation James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 05/18] lustre: lmv: compare space to mkdir on parent MDT James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 06/18] lnet: annotate LNET_WIRE_HANDLE_COOKIE_NONE as u64 James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 07/18] lnet: libcfs: Add checksum speed under /sys/fs James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 08/18] lnet: use ni fatal error when calculating net health James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 09/18] lustre: quota: add get/set project support for non-dir/file James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 10/18] lustre: readahead: fix to reserve min pages James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 11/18] lnet: RMDA infrastructure updates James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 12/18] lnet: o2iblnd: Move racy NULL assignment James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 13/18] lnet: o2iblnd: Avoid double posting invalidate James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 14/18] lustre: quota: nodemap squashed root cannot bypass quota James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 15/18] lustre: llite: reset pfid after dir migration James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 16/18] lustre: llite: failed ASSERTION(ldlm_has_layout(lock)) James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 17/18] lustre: pcc: introducing OBD_CONNECT2_PCCRO flag James Simmons
2021-07-19 12:32 ` [lustre-devel] [PATCH 18/18] lustre: sec: migrate/extend/split on encrypted file James Simmons

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.