All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2023-12-07 20:43:10 to 2023-12-07 21:29:16 UTC [more...]

[RFC 1/3] pidfd: allow pidfd_open() on non-thread-group leaders
 2023-12-07 21:25 UTC  (6+ messages)

[LTP] [PATCH v2 0/4] Add TDBUG tst_res() flag
 2023-12-07 21:27 UTC  (5+ messages)
` [LTP] [PATCH v2 1/4] lib/tests: Add test for testing tst_res() flags
` [LTP] [PATCH v2 2/4] lib: Add support for TDBUG tst_res() flag
` [LTP] [PATCH v2 3/4] fsx-linux: Reduce log output with TDBUG
` [LTP] [PATCH v2 4/4] fsx-linux: Use SAFE_MSYNC()

[PATCH i-g-t v6] tests/intel: Add Xe peer2peer test
 2023-12-07 21:28 UTC  (2+ messages)
` ✓ Fi.CI.BAT: success for tests/intel: Add Xe peer2peer test (rev7)

RTT-PROBE: lore-subspace-rtt
 2023-12-07 21:28 UTC 

[PATCH] iommu/arm-smmu-qcom: Add missing GMU entry to match table
 2023-12-07 21:24 UTC  (2+ messages)

drivers/vhost/vringh.c:567:18: sparse: sparse: cast to restricted __virtio16
 2023-12-07 21:26 UTC 

drivers/remoteproc/stm32_rproc.c:139:20: sparse: sparse: incorrect type in argument 1 (different address spaces)
 2023-12-07 21:26 UTC 

[PATCH v3 00/59] netfs, afs, 9p, cifs: Delegate high-level I/O to netfslib
 2023-12-07 21:22 UTC  (60+ messages)
` [PATCH v3 01/59] netfs, fscache: Move fs/fscache/* into fs/netfs/
` [PATCH v3 02/59] netfs, fscache: Combine fscache with netfs
` [PATCH v3 03/59] netfs, fscache: Remove ->begin_cache_operation
` [PATCH v3 04/59] netfs, fscache: Move /proc/fs/fscache to /proc/fs/netfs and put in a symlink
` [PATCH v3 05/59] netfs: Move pinning-for-writeback from fscache to netfs
` [PATCH v3 06/59] netfs: Add a procfile to list in-progress requests
` [PATCH v3 07/59] netfs: Allow the netfs to make the io (sub)request alloc larger
` [PATCH v3 08/59] netfs: Add a ->free_subrequest() op
` [PATCH v3 09/59] afs: Don't use folio->private to record partial modification
` [PATCH v3 10/59] netfs: Provide invalidate_folio and release_folio calls
` [PATCH v3 11/59] netfs: Implement unbuffered/DIO vs buffered I/O locking
` [PATCH v3 12/59] netfs: Add iov_iters to (sub)requests to describe various buffers
` [PATCH v3 13/59] netfs: Add support for DIO buffering
` [PATCH v3 14/59] netfs: Provide tools to create a buffer in an xarray
` [PATCH v3 15/59] netfs: Add bounce buffering support
` [PATCH v3 16/59] netfs: Add func to calculate pagecount/size-limited span of an iterator
` [PATCH v3 17/59] netfs: Limit subrequest by size or number of segments
` [PATCH v3 18/59] netfs: Export netfs_put_subrequest() and some tracepoints
` [PATCH v3 19/59] netfs: Extend the netfs_io_*request structs to handle writes
` [PATCH v3 20/59] netfs: Add a hook to allow tell the netfs to update its i_size
` [PATCH v3 21/59] netfs: Make netfs_put_request() handle a NULL pointer
` [PATCH v3 22/59] netfs: Make the refcounting of netfs_begin_read() easier to use
` [PATCH v3 23/59] netfs: Prep to use folio->private for write grouping and streaming write
` [PATCH v3 24/59] netfs: Dispatch write requests to process a writeback slice
` [PATCH v3 25/59] netfs: Provide func to copy data to pagecache for buffered write
` [PATCH v3 26/59] netfs: Make netfs_read_folio() handle streaming-write pages
` [PATCH v3 27/59] netfs: Allocate multipage folios in the writepath
` [PATCH v3 28/59] netfs: Implement support for unbuffered/DIO read
` [PATCH v3 29/59] netfs: Implement unbuffered/DIO write support
` [PATCH v3 30/59] netfs: Implement buffered write API
` [PATCH v3 31/59] netfs: Allow buffered shared-writeable mmap through netfs_page_mkwrite()
` [PATCH v3 32/59] netfs: Provide netfs_file_read_iter()
` [PATCH v3 33/59] netfs, cachefiles: Pass upper bound length to allow expansion
` [PATCH v3 34/59] netfs: Provide a writepages implementation
` [PATCH v3 35/59] netfs: Provide minimum blocksize parameter
` [PATCH v3 36/59] netfs: Make netfs_skip_folio_read() take account of blocksize
` [PATCH v3 37/59] netfs: Perform content encryption
` [PATCH v3 38/59] netfs: Decrypt encrypted content
` [PATCH v3 39/59] netfs: Support decryption on ubuffered/DIO read
` [PATCH v3 40/59] netfs: Support encryption on Unbuffered/DIO write
` [PATCH v3 41/59] netfs: Provide a launder_folio implementation
` [PATCH v3 42/59] netfs: Implement a write-through caching option
` [PATCH v3 43/59] netfs: Rearrange netfs_io_subrequest to put request pointer first
` [PATCH v3 44/59] netfs: Optimise away reads above the point at which there can be no data
` [PATCH v3 45/59] afs: Use the netfs write helpers
` [PATCH v3 46/59] 9p: Use netfslib read/write_iter
` [PATCH v3 47/59] cifs: Replace cifs_readdata with a wrapper around netfs_io_subrequest
` [PATCH v3 48/59] cifs: Share server EOF pos with netfslib
` [PATCH v3 49/59] cifs: Set zero_point in the copy_file_range() and remap_file_range()
` [PATCH v3 50/59] cifs: Replace cifs_writedata with a wrapper around netfs_io_subrequest
` [PATCH v3 51/59] cifs: Use more fields from netfs_io_subrequest
` [PATCH v3 52/59] cifs: Make wait_mtu_credits take size_t args
` [PATCH v3 53/59] cifs: Implement netfslib hooks
` [PATCH v3 54/59] cifs: Move cifs_loose_read_iter() and cifs_file_write_iter() to file.c
` [PATCH v3 55/59] cifs: Cut over to using netfslib
` [PATCH v3 56/59] cifs: Remove some code that's no longer used, part 1
` [PATCH v3 57/59] cifs: Remove some code that's no longer used, part 2
` [PATCH v3 58/59] cifs: Remove some code that's no longer used, part 3
` [PATCH v3 59/59] netfs: Eliminate PG_fscache by setting folio->private and marking dirty

[PATCH i-g-t v5 0/3] xe: Validate fixed CCS mode setting
 2023-12-07 21:24 UTC  (4+ messages)
` [PATCH i-g-t v5 1/3] lib/xe: Add __xe_exec_queue_create()
` [PATCH i-g-t v5 2/3] lib/intel_compute: Update intel_compute to run on specified engine
` [PATCH i-g-t v5 3/3] tests/xe_compute: Validate ccs_mode setting

[PATCH bpf-next v4 00/10] Add bpf_xdp_get_xfrm_state() kfunc
 2023-12-07 21:21 UTC  (6+ messages)
` [PATCH bpf-next v4 01/10] xfrm: bpf: Move xfrm_interface_bpf.c to xfrm_bpf.c
    ` [devel-ipsec] "
` [PATCH bpf-next v4 02/10] bpf: xfrm: Add bpf_xdp_get_xfrm_state() kfunc

[PATCH 1/3] freevxfs: bmap: fix kernel-doc warnings
 2023-12-07 21:20 UTC  (3+ messages)
` [PATCH 2/3] freevxfs: immed: fix kernel-doc param name
` [PATCH 3/3] freevxfs: lookup: fix function params kernel-doc

[PATCH] cxl/cdat: Free correct buffer on checksum error
 2023-12-07 21:18 UTC  (5+ messages)
  ` [PATCH] cxl/pci: Get rid of pointer arithmetic reading CDAT table

RTT-PROBE: lore-subspace-rtt
 2023-12-07 21:18 UTC 

cip/linux-4.19.y-cip baseline: 130 runs, 22 regressions (v4.19.299-cip105)
 2023-12-07 21:14 UTC 

cip/linux-4.19.y-cip baseline-cip-nfs: 9 runs, 6 regressions (v4.19.299-cip105)
 2023-12-07 21:14 UTC 

cip/linux-4.19.y-cip baseline-nfs: 52 runs, 7 regressions (v4.19.299-cip105)
 2023-12-07 21:14 UTC 

[PATCH] vdpa: Fix an error handling path in eni_vdpa_probe()
 2023-12-07 21:13 UTC  (2+ messages)

[PATCH net-next v3] net: stmmac: don't create a MDIO bus if unnecessary
 2023-12-07 21:12 UTC  (2+ messages)

cip/linux-5.10.y-cip kselftest-seccomp: 2 runs, 2 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 21:13 UTC 

cip/linux-5.10.y-cip ltp-mm: 5 runs, 1 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 21:13 UTC 

cip/linux-5.10.y-cip kselftest-futex: 9 runs, 1 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 21:13 UTC 

cip/linux-5.10.y-cip kselftest-filesystems: 9 runs, 1 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 21:13 UTC 

cip/linux-5.10.y-cip kselftest-lkdtm: 1 runs, 1 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 21:13 UTC 

cip/linux-5.10.y-cip kselftest-lib: 3 runs, 1 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 21:13 UTC 

cip/linux-5.10.y-cip ltp-ipc: 14 runs, 2 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 21:13 UTC 

cip/linux-5.10.y-cip ltp-fcntl-locktests: 9 runs, 1 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 21:13 UTC 

cip/linux-5.10.y-cip ltp-timers: 13 runs, 3 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 21:13 UTC 

cip/linux-5.10.y-cip ltp-pty: 8 runs, 2 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 21:13 UTC 

Rk3399 - Typec - Extcon
 2023-12-07 21:12 UTC 

[PATCH 00/16] ALSA: hda/tas2781: Add tas2563 support
 2023-12-07 21:12 UTC  (6+ messages)
` [PATCH 03/16] ASoC: tas2781: disable regmap regcache

[tj-cgroup:for-6.8] BUILD SUCCESS 3232e7aad11e541da86bbb1fa5ea5737b30bd006
 2023-12-07 21:11 UTC 

[tj-cgroup:for-next] BUILD SUCCESS 2c0726752750d50547bef426085784178366336e
 2023-12-07 21:10 UTC 

[PATCH] fs: Pass AT_GETATTR_NOSEC flag to getattr interface function
 2023-12-07 21:10 UTC  (2+ messages)

[PATCH] MAINTAINERS: Hand over the release manager role to Oleksii Kurochko
 2023-12-07 21:09 UTC  (3+ messages)

[PATCH i-g-t] tests/intel/xe_mmap: sanity check partial munmap
 2023-12-07 21:09 UTC  (2+ messages)
` ✗ CI.xeBAT: failure for "

[PATCH bpf-next 0/2] Add new bpf_cpumask_weight() kfunc
 2023-12-07 21:08 UTC  (3+ messages)
` [PATCH bpf-next 1/2] bpf: Add "
` [PATCH bpf-next 2/2] selftests/bpf: Add test for "

[PATCH v4 00/17] first version of mcdstub
 2023-12-07 21:03 UTC  (18+ messages)
` [PATCH v4 01/17] gdbstub, mcdstub: file and build structure adapted to accomodate for the mcdstub
` [PATCH v4 02/17] gdbstub: hex conversion functions moved to cutils.h
` [PATCH v4 03/17] gdbstub: GDBRegisterState moved to gdbstub.h so it can be used outside of the gdbstub
` [PATCH v4 04/17] gdbstub: DebugClass added to system mode
` [PATCH v4 05/17] mcdstub: memory helper functions added
` [PATCH v4 06/17] mcdstub: -mcd start option added, mcd specific defines added
` [PATCH v4 07/17] mcdstub: mcdserver initialization functions added
` [PATCH v4 08/17] cutils: qemu_strtou32 function added
` [PATCH v4 09/17] mcdstub: TCP packet plumbing added
` [PATCH v4 10/17] mcdstub: open and close server funcitons added
` [PATCH v4 11/17] mcdstub: system and core queries added
` [PATCH v4 12/17] mcdstub: all core specific "
` [PATCH v4 13/17] mcdstub: go, step and break added
` [PATCH v4 14/17] mcdstub: state query added
` [PATCH v4 15/17] mcdstub: skeleton for reset handling added
` [PATCH v4 16/17] mcdstub: register access added
` [PATCH v4 17/17] mcdstub: break/watchpoints added

[PATCH v4 1/1] PCI: switchtec: Fix stdev_release() crash after surprise hot remove
 2023-12-07 21:08 UTC  (2+ messages)

RTT-PROBE: lore-subspace-rtt
 2023-12-07 21:08 UTC 

64-bit userspace root file system for hppa64
 2023-12-07 21:08 UTC  (10+ messages)

[PATCH] hwmon: (corsair-psu) Fix probe when built-in
 2023-12-07 21:07 UTC 

[RFC PATCH v1 0/1] ARCH_FIXED_CONFIG introduction for randconfig
 2023-12-07 21:07 UTC  (4+ messages)
` [RFC PATCH v1 1/1] xen/Makefile: introduce ARCH_FIXED_CONFIG "

[PATCH v1 01/10] usb: typec: bus: provide transmit type for alternate mode drivers
 2023-12-07 21:06 UTC  (2+ messages)

[PATCH] freezer,sched: Move state information judgment outside task_call_func
 2023-12-07 21:06 UTC  (2+ messages)

[PATCH 1/3] nvdimm/btt: fix btt_blk_cleanup() kernel-doc
 2023-12-07 21:05 UTC  (3+ messages)
` [PATCH 2/3] nvdimm/dimm_devs: fix kernel-doc for function params
` [PATCH 3/3] nvdimm/namespace: "

[PATCH v2] mpt3sas: suppress a warning in debug kernel
 2023-12-07 20:57 UTC  (2+ messages)

[PATCH] maple_tree: Fix mas_prev() state separation code
 2023-12-07 21:04 UTC  (3+ messages)

[PATCH wpan-tools 0/2] Associations support
 2023-12-07 21:04 UTC  (2+ messages)

[PATCH] block: Remove special-casing of compound pages
 2023-12-07 21:04 UTC  (2+ messages)

[PATCH 1/3] block: Rework bio_for_each_segment_all()
 2023-12-07 21:04 UTC  (8+ messages)
` [PATCH 2/3] block: Rework bio_for_each_folio_all(), add bio_for_each_folio()

[PATCH][next] drm/amd/display: Fix spelling mistake "SMC_MSG_AllowZstatesEntr" -> "SMC_MSG_AllowZstatesEntry"
 2023-12-07 21:02 UTC  (4+ messages)

[PATCH 0/3] media: imx415: Add more modes
 2023-12-07 21:02 UTC  (3+ messages)
` [PATCH 1/3] media: i2c: imx415: Convert to new CCI register access helpers

[PATCH 1/8] wifi: mt76: change txpower init to per-phy
 2023-12-07 21:01 UTC  (5+ messages)
` [PATCH 2/8] wifi: mt76: mt7996: add txpower setting support

[PATCH net-next v3 0/5] net/sched: conditional notification of events for cls and act
 2023-12-07 21:00 UTC  (11+ messages)
` [PATCH net-next v3 1/5] rtnl: add helper to check if rtnl group has listeners
` [PATCH net-next v3 2/5] rtnl: add helper to check if a notification is needed
` [PATCH net-next v3 3/5] rtnl: add helper to send if skb is not null
` [PATCH net-next v3 4/5] net/sched: act_api: conditional notification of events
` [PATCH net-next v3 5/5] net/sched: cls_api: "

[PATCH] !fixup: drm/xe/gsc: GSC FW load
 2023-12-07 20:55 UTC 

[PATCH] dt-bindings: dma: Drop undocumented examples
 2023-12-07 20:59 UTC  (2+ messages)

linux-next: build failure after merge of the devicetree tree
 2023-12-07 20:58 UTC  (3+ messages)

RTT-PROBE: lore-subspace-rtt
 2023-12-07 20:58 UTC 

[PATCH v1 1/2] ARM: dts: rockchip: add gpio alias for gpio dt nodes
 2023-12-07 20:57 UTC  (4+ messages)

[PATCH v1 1/3] x86/tdx: Check for TDX partitioning during early TDX init
 2023-12-07 20:56 UTC  (8+ messages)

[PATCH wpan-tools] iwpan: Allow the phy shortcut for scanning commands
 2023-12-07 20:55 UTC  (3+ messages)

[PATCH v9 0/2] arm64: Add a build target for Flat Image Tree
 2023-12-07 20:52 UTC  (7+ messages)
` [PATCH v9 2/2] arm64: boot: Support "

[PATCH 1/4] cmake-qemu.bbclass: make it more usable
 2023-12-07 20:52 UTC  (4+ messages)
` [PATCH 2/4] oe-selftest: add a cpp-example recipe
` [PATCH 3/4] oeqa/core/decorator: add skip if not qemu-usermode
` [PATCH 4/4] oe-selftest: add tests for C and C++ build tools

[PATCH v2 1/1] arm64: defconfig: Enable SDM660 Clock Controllers
 2023-12-07 20:50 UTC  (5+ messages)

[PATCH i-g-t 1/2] tests/kms_async_flip: Speed up the CRC test on Intel hw
 2023-12-07 20:49 UTC  (2+ messages)
` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] "

[PATCH wpan-next 0/5] ieee802154: Association tweaks
 2023-12-07 20:49 UTC  (9+ messages)
` [PATCH wpan-next 2/5] mac802154: Use the PAN coordinator parameter when stamping packets
` [PATCH wpan-next 3/5] mac802154: Only allow PAN controllers to process association requests
` [PATCH wpan-next 4/5] ieee802154: Avoid confusing changes after associating
` [PATCH wpan-next 5/5] mac802154: Avoid new associations while disassociating

preparations for 4.17.3
 2023-12-07 20:48 UTC  (2+ messages)

[PATCH v3] hwmon: Add driver for Gigabyte AORUS Waterforce AIO coolers
 2023-12-07 20:48 UTC  (4+ messages)

[PATCH v5 00/17] add integrity and security to TPM2 transactions
 2023-12-07 20:48 UTC  (3+ messages)
` [PATCH v5 16/17] tpm: add the null key name as a sysfs export

RTT-PROBE: lore-subspace-rtt
 2023-12-07 20:48 UTC 

[GIT PULL] platform-drivers-x86 for v6.7-3
 2023-12-07 20:47 UTC  (2+ messages)

[GIT PULL] regmap fixes for v6.7-rc4
 2023-12-07 20:47 UTC  (2+ messages)

[PATCH] nvme-pci: enhance timeout kernel log
 2023-12-07 20:47 UTC  (4+ messages)

[GIT PULL] workqueue fixes for v6.7-rc4
 2023-12-07 20:47 UTC  (2+ messages)

[GIT PULL] Devicetree fixes for v6.7, take 1
 2023-12-07 20:46 UTC  (2+ messages)

[PATCH v2 1/6] PCI/ASPM: Add locked helper for enabling link state
 2023-12-07 20:47 UTC  (2+ messages)

[GIT PULL] cgroup fixes for v6.7-rc4
 2023-12-07 20:46 UTC  (2+ messages)

[PATCH 00/24] pack-objects: multi-pack verbatim reuse
 2023-12-07 20:47 UTC  (7+ messages)
` [PATCH 14/24] pack-objects: keep track of `pack_start` for each reuse pack
` [PATCH 16/24] pack-objects: prepare `write_reused_pack()` for multi-pack reuse

[GIT PULL] parisc architecture fix for v6.7-rc5
 2023-12-07 20:46 UTC  (2+ messages)

[GIT PULL] Rockchip clock fixes for 6.7
 2023-12-07 20:46 UTC  (2+ messages)

[PATCH] nvdimm-btt: fix a potential memleak in btt_freelist_init
 2023-12-07 20:46 UTC  (3+ messages)

cip/linux-4.19.y-cip build: 122 builds: 0 failed, 122 passed, 23 warnings (v4.19.299-cip105)
 2023-12-07 20:46 UTC 

Issue with TPS6598x driver on ThinkPad T14 Gen1
 2023-12-07 20:38 UTC 

[PATCH v3 0/5] hwmon: Add support for Amphenol ChipCap 2
 2023-12-07 20:44 UTC  (5+ messages)
` [PATCH v3 5/5] "

drivers/irqchip/irq-apple-aic.c:941 aic_of_ic_init() error: uninitialized symbol 'off'
 2023-12-07 20:43 UTC 

cip/linux-5.10.y-cip baseline: 119 runs, 21 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 20:43 UTC 

cip/linux-5.10.y-cip baseline-nfs: 55 runs, 14 regressions (v5.10.201-cip41-28-ga386bc478aa6b)
 2023-12-07 20:43 UTC 


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.