This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from dba89d1b81df Merge tag 'docs-6.9-2' of git://git.lwn.net/linux new 9d56c88e5225 tools/tracing: Use tools/build makefiles on latency-collector new 01474dc706ca tools/rtla: Use tools/build makefiles to build rtla new 012e4e77df73 tools/verification: Use tools/build makefiles on rv new a23c05fd76cf tools/rtla: Add -U/--user-load option to timerlat new 42c2a7569405 Merge tag 'trace-tools-v6.9' of git://git.kernel.org/pub/s [...] new 5614c8c487f6 ksmbd: replace generic_fillattr with vfs_getattr new 34cd86b66327 ksmbd: retrieve number of blocks using vfs_getattr in set_ [...] new fa9415d4024f ksmbd: mark SMB2_SESSION_EXPIRED to session when destroyin [...] new c8efcc786146 ksmbd: add support for durable handles v1/v2 new 5fb282ba4fef ksmbd: fix possible null-deref in smb_lazy_parent_lease_br [...] new e758fa6956cb ksmbd: Fix spelling mistake "connction" -> "connection" new a80a486d72e2 ksmbd: fix slab-out-of-bounds in smb_strndup_from_utf16() new c6cd2e8d2d9a ksmbd: fix potencial out-of-bounds when buffer offset is invalid new def30e72d8ab ksmbd: remove module version new 23956900041d Merge tag 'v6.9-rc-smb3-server-fixes' of git://git.samba.o [...]
The 15 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: .../tools/rtla/common_timerlat_options.rst | 6 + fs/smb/server/glob.h | 2 - fs/smb/server/ksmbd_netlink.h | 1 + fs/smb/server/mgmt/user_session.c | 28 +- fs/smb/server/mgmt/user_session.h | 3 + fs/smb/server/oplock.c | 96 +++- fs/smb/server/oplock.h | 7 +- fs/smb/server/server.c | 1 - fs/smb/server/smb2misc.c | 26 +- fs/smb/server/smb2ops.c | 6 + fs/smb/server/smb2pdu.c | 509 ++++++++++++++++----- fs/smb/server/smb2pdu.h | 15 + fs/smb/server/smb_common.c | 11 +- fs/smb/server/vfs.c | 12 +- fs/smb/server/vfs_cache.c | 137 +++++- fs/smb/server/vfs_cache.h | 9 + tools/tracing/latency/.gitignore | 5 +- tools/tracing/latency/Build | 1 + tools/tracing/latency/Makefile | 105 ++++- tools/tracing/latency/Makefile.config | 30 ++ tools/tracing/rtla/.gitignore | 7 +- tools/tracing/rtla/Build | 1 + tools/tracing/rtla/Makefile | 217 +++------ tools/tracing/rtla/Makefile.config | 47 ++ tools/tracing/rtla/Makefile.rtla | 80 ++++ tools/tracing/rtla/Makefile.standalone | 26 ++ tools/tracing/rtla/sample/timerlat_load.py | 74 +++ tools/tracing/rtla/src/Build | 11 + tools/tracing/rtla/src/timerlat_hist.c | 16 +- tools/tracing/rtla/src/timerlat_top.c | 14 +- tools/verification/rv/.gitignore | 6 + tools/verification/rv/Build | 1 + tools/verification/rv/Makefile | 207 +++------ tools/verification/rv/Makefile.config | 47 ++ tools/verification/rv/Makefile.rv | 51 +++ tools/verification/rv/src/Build | 4 + 36 files changed, 1366 insertions(+), 453 deletions(-) create mode 100644 tools/tracing/latency/Build create mode 100644 tools/tracing/latency/Makefile.config create mode 100644 tools/tracing/rtla/Build create mode 100644 tools/tracing/rtla/Makefile.config create mode 100644 tools/tracing/rtla/Makefile.rtla create mode 100644 tools/tracing/rtla/Makefile.standalone create mode 100644 tools/tracing/rtla/sample/timerlat_load.py create mode 100644 tools/tracing/rtla/src/Build create mode 100644 tools/verification/rv/.gitignore create mode 100644 tools/verification/rv/Build create mode 100644 tools/verification/rv/Makefile.config create mode 100644 tools/verification/rv/Makefile.rv create mode 100644 tools/verification/rv/src/Build