This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 416f99c3b16f Merge tag 'driver-core-6.19-rc1' of git://git.kernel.org/p [...] new 821fe7bf16c5 rust: sync: add `SetOnce` new 51d9ee90ea90 rust: str: add radix prefixed integer parsing functions new 0b08fc292842 rust: introduce module_param module new 3809d7a89fe5 rust: module: use a reference in macros::module::module new 0b24f9740f26 rust: module: update the module macro with module paramete [...] new e119c2fe8c78 rust: samples: add a module parameter to the rust_minimal sample new ee3b8134b2ba modules: add rust modules files to MAINTAINERS new 9de2198ab975 media: dvb-usb-v2: lmedm04: Fix firmware macro definitions new 57e9853737e2 media: radio: si470x: Fix DRIVER_AUTHOR macro definition new ae83f3b72621 module: Add compile-time check for embedded NUL characters new 1ddac5cd7f27 MAINTAINERS: Add myself as reviewer for module support new c84d574698ba Merge tag 'modules-6.19-rc1' of git://git.kernel.org/pub/s [...] new 309e49039f12 rust: sync: atomic: separate import "blocks" new 0cb302c9c9b7 bitops: Add missed file to MAINTAINERS new 6f15c3d715f1 bitops: Update kernel-doc in hweight.c to fix the issues with it new d1cadd4bfc28 nodemask: use min() instead of min_t() new dbfe51513aae clk: at91: pmc: #undef field_{get,prep}() before definition new 7996cbdb3f84 crypto: qat - #undef field_get() before local definition new d51b09a0feb6 EDAC/ie31200: #undef field_get() before local definition new d1e1a7271e97 gpio: aspeed: #undef field_{get,prep}() before local definition new 27856d2b2b0f iio: dac: ad3530r: #undef field_prep() before local definition new 8a838dabf145 iio: mlx90614: #undef field_{get,prep}() before local definition new 2fc00c008e90 pinctrl: ma35: #undef field_{get,prep}() before local definition new 138ab44108fa soc: renesas: rz-sysc: #undef field_get() before local definition new 85a8ff118531 ALSA: usb-audio: #undef field_{get,prep}() before local de [...] new 2a6c045640c3 bitfield: Add less-checking __FIELD_{GET,PREP}() new c1c6ab80b25c bitfield: Add non-constant field_{prep,get}() helpers new 0f8407a1f1c7 clk: at91: Convert to common field_{get,prep}() helpers new 350f06c9e2c9 crypto: qat - convert to common field_get() helper new 331a1457d8d5 EDAC/ie31200: Convert to common field_get() helper new 2ef26ba8192c gpio: aspeed: Convert to common field_{get,prep}() helpers new 54bfd90ca3b4 iio: dac: Convert to common field_prep() helper new 1fe1c28a108e iio: mlx90614: Convert to common field_{get,prep}() helpers new bb0e7fda8775 pinctrl: ma35: Convert to common field_{get,prep}() helpers new 610c4408a2f7 soc: renesas: rz-sysc: Convert to common field_get() helper new b1cff2f4b239 ALSA: usb-audio: Convert to common field_{get,prep}() helpers new 3937b05bb78f clk: renesas: Use bitfield helpers new c604cb5fdf0f soc: renesas: Use bitfield helpers new 4bd68e475300 cpumask: Don't use "proxy" headers new f5535d78e126 rust: bitmap: add MAX_LEN and MAX_INLINE_LEN constants new d0cf6512bbcf rust: bitmap: add BitmapVec::new_inline() new 6297fb3863d8 rust: id_pool: rename IdPool::new() to with_capacity() new 69ec6a1bed30 rust: id_pool: do not supply starting capacity new f523d110a63b rust: id_pool: do not immediately acquire new ids new 5ba71195a9cb rust_binder: use bitmap for allocation of handles new f468cf53c524 Merge tag 'bitmap-for-6.19' of github.com:/norov/linux
The 46 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 | 4 + arch/x86/include/asm/cpumask.h | 2 + drivers/android/binder/process.rs | 64 +++++-- drivers/clk/at91/clk-peripheral.c | 1 + drivers/clk/at91/pmc.h | 3 - drivers/clk/renesas/clk-div6.c | 6 +- drivers/clk/renesas/rcar-gen3-cpg.c | 15 +- drivers/clk/renesas/rcar-gen4-cpg.c | 9 +- .../intel/qat/qat_common/adf_pm_dbgfs_utils.c | 8 +- drivers/edac/ie31200_edac.c | 4 +- drivers/gpio/gpio-aspeed.c | 5 +- drivers/iio/dac/ad3530r.c | 3 - drivers/iio/temperature/mlx90614.c | 5 +- drivers/media/radio/si470x/radio-si470x-i2c.c | 2 +- drivers/media/usb/dvb-usb-v2/lmedm04.c | 12 +- drivers/pinctrl/nuvoton/pinctrl-ma35.c | 4 - drivers/soc/renesas/renesas-soc.c | 4 +- drivers/soc/renesas/rz-sysc.c | 3 +- include/linux/bitfield.h | 95 +++++++++- include/linux/cpumask.h | 10 +- include/linux/moduleparam.h | 3 + include/linux/nodemask.h | 9 +- lib/hweight.c | 4 +- rust/kernel/bitmap.rs | 43 +++-- rust/kernel/id_pool.rs | 141 +++++++++++---- rust/kernel/lib.rs | 1 + rust/kernel/module_param.rs | 182 +++++++++++++++++++ rust/kernel/str.rs | 2 + rust/kernel/str/parse_int.rs | 148 +++++++++++++++ rust/kernel/sync.rs | 2 + rust/kernel/sync/atomic.rs | 1 + rust/kernel/sync/set_once.rs | 125 +++++++++++++ rust/macros/helpers.rs | 25 +++ rust/macros/lib.rs | 31 ++++ rust/macros/module.rs | 198 ++++++++++++++++++--- samples/rust/rust_minimal.rs | 10 ++ sound/usb/mixer_quirks.c | 4 - 37 files changed, 1020 insertions(+), 168 deletions(-) create mode 100644 rust/kernel/module_param.rs create mode 100644 rust/kernel/str/parse_int.rs create mode 100644 rust/kernel/sync/set_once.rs