This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 4debf77169ee Merge tag 'for-linus-iommufd' of git://git.kernel.org/pub/ [...] new 44f23dabdc08 nvdimm: Use kstrtobool() instead of strtobool() new c1dbd8a84918 virtio_pmem: add the missing REQ_OP_WRITE for flush bio new fd774e36fe87 nvdimm: Explicitly include correct DT includes new e96d9a938e89 nvdimm/pfn_dev: Prevent the creation of zero-sized namespaces new feb72e9b2082 nvdimm/pfn_dev: Avoid unnecessary endian conversion new 85ae42c72142 nvdimm: Fix memleak of pmu attr_groups in unregister_nvdimm_pmu() new 08ca6906a4b7 nvdimm: Fix dereference after free in register_nvdimm_pmu() new 47d154eb2ac4 Merge tag 'libnvdimm-for-6.6' of git://git.kernel.org/pub/ [...] new 3fea12f3c67d smb: client: introduce DFS_CACHE_TGT_LIST() new ce04127c5849 smb: client: ensure to try all targets when finding nested links new 8b4e285d8ce3 smb: client: move some params to cifs_open_info_data new c5f44a3d5477 smb: client: make smb2_compound_op() return resp buffer on [...] new 561f82a3a24c smb: client: rename cifs_dfs_ref.c to namespace.c new 0a049935e47e smb: client: get rid of dfs naming in automount code new 348a04a8d113 smb: client: get rid of dfs code dep in namespace.c new 5f71ebc41294 smb: client: parse reparse point flag in create response new 9a49e221a641 smb: client: do not query reparse points twice on symlinks new f2762ae4d3e0 smb: client: query reparse points in older dialects new a18280e7fdea smb: cilent: set reparse mount points as automounts new 69a4e06c0e7b smb: client: reduce stack usage in cifs_try_adding_channels() new 946ad1b8b18d smb: client: reduce stack usage in cifs_demultiplex_thread() new 933148a47c8b smb: client: reduce stack usage in smb_send_rqst() new f4e5ceb6c1a6 smb: client: reduce stack usage in smb2_set_ea() new b9148756d3e7 smb: client: reduce stack usage in smb2_query_info_compound() new 74e01332d958 smb: client: reduce stack usage in smb2_query_reparse_point() new b6d44d42313b cifs: update desired access while requesting for directory lease new 09ee7a3bf866 [SMB3] send channel sequence number in SMB3 requests after [...] new b3773b19d43f SMB3: rename macro CIFS_SERVER_IS_CHAN to avoid confusion new 9e7493895474 fs/smb: Remove unicode 'lower' tables new 089f7f591348 fs/smb: Swing unicode common code from smb->NLS new de54845290ce fs/smb/client: Use common code in client new f3a9b3758e0b fs/jfs: Use common ucs2 upper case table new b97d64c72259 Merge tag '6.6-rc-smb3-client-fixes-part1' of git://git.sa [...]
The 33 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: drivers/nvdimm/namespace_devs.c | 3 +- drivers/nvdimm/nd_perf.c | 3 +- drivers/nvdimm/nd_virtio.c | 3 +- drivers/nvdimm/of_pmem.c | 4 +- drivers/nvdimm/pfn_devs.c | 20 +- drivers/nvdimm/pmem.c | 3 +- drivers/nvdimm/region_devs.c | 5 +- fs/jfs/Kconfig | 1 + fs/jfs/Makefile | 2 +- fs/jfs/jfs_unicode.h | 17 +- fs/jfs/jfs_uniupr.c | 121 ------ fs/nls/Kconfig | 8 + fs/nls/Makefile | 1 + fs/nls/nls_ucs2_data.h | 15 + fs/{smb/server/uniupr.h => nls/nls_ucs2_utils.c} | 156 +------ fs/{smb/server/unicode.h => nls/nls_ucs2_utils.h} | 89 +--- fs/smb/client/Kconfig | 1 + fs/smb/client/Makefile | 5 +- fs/smb/client/cached_dir.c | 2 +- fs/smb/client/cifs_debug.c | 2 +- fs/smb/client/cifs_unicode.c | 1 - fs/smb/client/cifs_unicode.h | 330 +------------- fs/smb/client/cifs_uniupr.h | 239 ----------- fs/smb/client/cifsfs.c | 2 +- fs/smb/client/cifsfs.h | 11 +- fs/smb/client/cifsglob.h | 72 +++- fs/smb/client/cifsproto.h | 9 +- fs/smb/client/connect.c | 21 +- fs/smb/client/dfs.c | 271 ++++++------ fs/smb/client/dfs.h | 141 ++++-- fs/smb/client/dfs_cache.c | 10 +- fs/smb/client/dfs_cache.h | 12 +- fs/smb/client/dir.c | 4 +- fs/smb/client/inode.c | 498 ++++++++++++---------- fs/smb/client/misc.c | 2 +- fs/smb/client/{cifs_dfs_ref.c => namespace.c} | 113 ++--- fs/smb/client/readdir.c | 23 +- fs/smb/client/sess.c | 72 ++-- fs/smb/client/smb1ops.c | 26 +- fs/smb/client/smb2inode.c | 203 +++++---- fs/smb/client/smb2misc.c | 6 +- fs/smb/client/smb2ops.c | 298 ++++--------- fs/smb/client/smb2pdu.c | 19 +- fs/smb/client/smb2proto.h | 17 +- fs/smb/client/smb2transport.c | 4 +- fs/smb/client/transport.c | 29 +- fs/smb/common/smb2pdu.h | 22 + fs/smb/server/Kconfig | 1 + fs/smb/server/unicode.c | 1 - fs/smb/server/unicode.h | 325 +------------- 50 files changed, 1126 insertions(+), 2117 deletions(-) delete mode 100644 fs/jfs/jfs_uniupr.c create mode 100644 fs/nls/nls_ucs2_data.h rename fs/{smb/server/uniupr.h => nls/nls_ucs2_utils.c} (50%) copy fs/{smb/server/unicode.h => nls/nls_ucs2_utils.h} (73%) delete mode 100644 fs/smb/client/cifs_uniupr.h rename fs/smb/client/{cifs_dfs_ref.c => namespace.c} (62%)