This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 9805a68371ce Merge branch 'x86-urgent-for-linus' of git://git.kernel.or [...] new e2f238f7d5a1 configfs: calculate the depth of parent item new a5871fcba46e Merge tag 'configfs-for-5.4-2' of git://git.infradead.org/ [...] new 83c774f0c69d interconnect: qcom: Fix icc_onecell_data allocation new a8dfe193a60c interconnect: Add locking in icc_set_tag() new 5e0eb05d7f75 Merge tag 'icc-5.4-rc5' of https://git.linaro.org/people/g [...] new fd5c46b754d4 thunderbolt: Read DP IN adapter first two dwords in one go new 6f6709734274 thunderbolt: Fix lockdep circular locking depedency warning new 747125db6dcd thunderbolt: Drop unnecessary read when writing LC command [...] new 92fd9bf2c326 Merge tag 'thunderbolt-fixes-for-v5.4-1' of git://git.kern [...] new 52eb063d153a soundwire: depend on ACPI new 0f8c0f8a7782 soundwire: depend on ACPI || OF new cf9249626f72 soundwire: intel: fix intel_register_dai PDI offsets and numbers new 7b47ad3322d1 soundwire: slave: fix scanf format new 106901add52b Merge tag 'soundwire-5.4-rc6' of git://git.kernel.org/pub/ [...] new 87c0b9c79ec1 intel_th: gth: Fix the window switching sequence new e5a340f77027 intel_th: msu: Fix an uninitialized mutex new 063f097fd65a intel_th: msu: Fix missing allocation failure check on a kstrndup new 8e3ef7b444ae intel_th: msu: Fix overflow in shift of an unsigned int new 1fa1b6ca0fda intel_th: msu: Fix possible memory leak in mode_store() new 3adbb5718dd5 intel_th: pci: Add Comet Lake PCH support new 9d55499d8da4 intel_th: pci: Add Jasper Lake PCH support new 3de2a3e93700 Merge tag 'char-misc-5.4-rc7' of git://git.kernel.org/pub/ [...] new df4028658f9d staging: Add VirtualBox guest shared folder (vboxsf) support new 24e1eb5c0d78 iio: imu: adis16480: make sure provided frequency is positive new 431f7667bd68 iio: srf04: fix wrong limitation in distance measuring new 6e82ae6b8d11 iio: imu: inv_mpu6050: fix no data on MPU6050 new e6afcf6c598d iio: adc: stm32-adc: fix stopping dma new fe4c59394ede Merge tag 'iio-fixes-for-5.4b' of https://git.kernel.org/p [...] new 32e9f6cb0734 staging: vboxsf: Remove unused including <linux/version.h> new 94fed404109d staging: vboxsf: fix dereference of pointer dentry before [...] new e39fcaef7ed9 staging: Fix error return code in vboxsf_fill_super() new dd892625d0e2 Merge tag 'staging-5.4-rc7' of git://git.kernel.org/pub/sc [...]
The 32 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: MAINTAINERS | 6 + drivers/hwtracing/intel_th/gth.c | 3 + drivers/hwtracing/intel_th/msu.c | 11 +- drivers/hwtracing/intel_th/pci.c | 10 + drivers/iio/adc/stm32-adc.c | 4 +- drivers/iio/imu/adis16480.c | 5 +- drivers/iio/imu/inv_mpu6050/inv_mpu_core.c | 9 + drivers/iio/imu/inv_mpu6050/inv_mpu_iio.h | 2 + drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c | 15 +- drivers/iio/proximity/srf04.c | 29 +- drivers/interconnect/core.c | 4 + drivers/interconnect/qcom/qcs404.c | 3 +- drivers/interconnect/qcom/sdm845.c | 3 +- drivers/soundwire/Kconfig | 1 + drivers/soundwire/intel.c | 4 +- drivers/soundwire/slave.c | 3 +- drivers/staging/Kconfig | 2 + drivers/staging/Makefile | 1 + drivers/staging/vboxsf/Kconfig | 10 + drivers/staging/vboxsf/Makefile | 5 + drivers/staging/vboxsf/TODO | 7 + drivers/staging/vboxsf/dir.c | 418 +++++++++++++ drivers/staging/vboxsf/file.c | 370 ++++++++++++ drivers/staging/vboxsf/shfl_hostintf.h | 901 +++++++++++++++++++++++++++++ drivers/staging/vboxsf/super.c | 501 ++++++++++++++++ drivers/staging/vboxsf/utils.c | 551 ++++++++++++++++++ drivers/staging/vboxsf/vboxsf_wrappers.c | 371 ++++++++++++ drivers/staging/vboxsf/vfsmod.h | 137 +++++ drivers/thunderbolt/nhi_ops.c | 1 - drivers/thunderbolt/switch.c | 28 +- fs/configfs/symlink.c | 2 +- 31 files changed, 3370 insertions(+), 47 deletions(-) create mode 100644 drivers/staging/vboxsf/Kconfig create mode 100644 drivers/staging/vboxsf/Makefile create mode 100644 drivers/staging/vboxsf/TODO create mode 100644 drivers/staging/vboxsf/dir.c create mode 100644 drivers/staging/vboxsf/file.c create mode 100644 drivers/staging/vboxsf/shfl_hostintf.h create mode 100644 drivers/staging/vboxsf/super.c create mode 100644 drivers/staging/vboxsf/utils.c create mode 100644 drivers/staging/vboxsf/vboxsf_wrappers.c create mode 100644 drivers/staging/vboxsf/vfsmod.h