All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2024-07-02 08:55:00 to 2024-07-02 09:31:35 UTC [more...]

[PATCH v13] pwm: opencores: Add PWM driver support
 2024-07-02  9:21 UTC  (2+ messages)

More than 255 vcpus Windows VM setup without viommu ?
 2024-07-02  9:04 UTC  (2+ messages)

[PATCH blktests v3 0/3] Add support to run against real target
 2024-07-02  9:31 UTC  (4+ messages)
` [PATCH blktests v3 1/3] nvme/rc: introduce remote target support

[PULL 00/67] SD/MMC patches for 2024-07-02
 2024-07-02  9:20 UTC  (65+ messages)
` [PULL 01/67] hw/sd/sdcard: Deprecate support for spec v1.10
` [PULL 02/67] hw/sd/sdcard: Track last command used to help logging
` [PULL 03/67] hw/sd/sdcard: Trace block offset in READ/WRITE data accesses
` [PULL 04/67] hw/sd/sdcard: Trace requested address computed by sd_req_get_address()
` [PULL 05/67] hw/sd/sdcard: Restrict SWITCH_FUNCTION to sd_transfer_state (CMD6)
` [PULL 06/67] hw/sd/sdcard: Send WRITE_PROT bits MSB first (CMD30)
` [PULL 07/67] hw/sd/sdcard: Send NUM_WR_BLOCKS bits MSB first (ACMD22)
` [PULL 08/67] hw/sd/sdcard: Use READY_FOR_DATA definition instead of magic value
` [PULL 09/67] hw/sd/sdcard: Assign SDCardStates enum values
` [PULL 10/67] hw/sd/sdcard: Simplify sd_inactive_state handling
` [PULL 11/67] hw/sd/sdcard: Add direct reference to SDProto in SDState
` [PULL 12/67] hw/sd/sdcard: Extract sd_blk_len() helper
` [PULL 13/67] hw/sd/sdcard: Introduce definitions for EXT_CSD register
` [PULL 14/67] hw/sd/sdcard: Introduce sd_cmd_to_sendingdata and sd_generic_read_byte
` [PULL 15/67] hw/sd/sdcard: Convert SWITCH_FUNCTION to generic_read_byte (CMD6)
` [PULL 16/67] hw/sd/sdcard: Convert SEND_CSD/SEND_CID to generic_read_byte (CMD9 & 10)
` [PULL 17/67] hw/sd/sdcard: Duplicate READ_SINGLE_BLOCK / READ_MULTIPLE_BLOCK cases
` [PULL 18/67] hw/sd/sdcard: Convert READ_SINGLE_BLOCK to generic_read_byte (CMD17)
` [PULL 19/67] hw/sd/sdcard: Convert SEND_TUNING_BLOCK to generic_read_byte (CMD19)
` [PULL 20/67] hw/sd/sdcard: Convert SEND_WRITE_PROT to generic_read_byte (CMD30)
` [PULL 21/67] hw/sd/sdcard: Convert SD_STATUS to generic_read_byte (ACMD13)
` [PULL 22/67] hw/sd/sdcard: Convert SEND_NUM_WR_BLOCKS to generic_read_byte (ACMD22)
` [PULL 23/67] hw/sd/sdcard: Convert SEND_SCR to generic_read_byte (ACMD51)
` [PULL 24/67] hw/sd/sdcard: Introduce sd_cmd_to_receivingdata / sd_generic_write_byte
` [PULL 25/67] hw/sd/sdcard: Duplicate WRITE_SINGLE_BLOCK / WRITE_MULTIPLE_BLOCK cases
` [PULL 26/67] hw/sd/sdcard: Convert WRITE_SINGLE_BLOCK to generic_write_byte (CMD24)
` [PULL 27/67] hw/sd/sdcard: Convert PROGRAM_CID to generic_write_byte (CMD26)
` [PULL 28/67] hw/sd/sdcard: Convert PROGRAM_CSD to generic_write_byte (CMD27)
` [PULL 30/67] hw/sd/sdcard: Move sd_[a]cmd_name() methods to sd.c
` [PULL 31/67] hw/sd/sdcard: Pass SDState as argument to sd_[a]cmd_name()
` [PULL 32/67] hw/sd/sdcard: Prepare SDProto to contain more fields
` [PULL 33/67] hw/sd/sdcard: Store command name in SDProto
` [PULL 34/67] hw/sd/sdcard: Store command type "
` [PULL 35/67] hw/sd/sdcard: Store command class "
` [PULL 36/67] hw/sd/sdcard: Remove SEND_DSR dead case (CMD4)
` [PULL 38/67] hw/sd/sdcard: Register optional handlers from spec v6.00
` [PULL 39/67] hw/sd/sdcard: Register SDIO optional handlers
` [PULL 40/67] hw/sd/sdcard: Register Security Extension "
` [PULL 41/67] hw/sd/sdcard: Add sd_cmd_SWITCH_FUNCTION handler (CMD6)
` [PULL 42/67] hw/sd/sdcard: Add sd_cmd_DE/SELECT_CARD handler (CMD7)
` [PULL 43/67] hw/sd/sdcard: Add sd_cmd_SEND_IF_COND handler (CMD8)
` [PULL 44/67] hw/sd/sdcard: Add sd_cmd_SEND_CSD/CID handlers (CMD9 & CMD10)
` [PULL 45/67] hw/sd/sdcard: Add spi_cmd_SEND_CSD/CID "
` [PULL 46/67] hw/sd/sdcard: Add sd_cmd_STOP_TRANSMISSION handler (CMD12)
` [PULL 47/67] hw/sd/sdcard: Add sd_cmd_SEND_STATUS handler (CMD13)
` [PULL 48/67] hw/sd/sdcard: Add sd_cmd_GO_INACTIVE_STATE handler (CMD15)
` [PULL 49/67] hw/sd/sdcard: Add sd_cmd_SET_BLOCKLEN handler (CMD16)
` [PULL 50/67] hw/sd/sdcard: Add sd_cmd_READ_SINGLE_BLOCK handler (CMD17)
` [PULL 51/67] hw/sd/sdcard: Add sd_cmd_WRITE_SINGLE_BLOCK handler (CMD24)
` [PULL 52/67] hw/sd/sdcard: Add sd_cmd_PROGRAM_CSD handler (CMD27)
` [PULL 53/67] hw/sd/sdcard: Add sd_cmd_SET/CLR_WRITE_PROT handler (CMD28 & CMD29)
` [PULL 54/67] hw/sd/sdcard: Add sd_cmd_SEND_WRITE_PROT handler (CMD30)
` [PULL 55/67] hw/sd/sdcard: Add sd_cmd_ERASE_WR_BLK_START/END handlers (CMD32 & CMD33)
` [PULL 56/67] hw/sd/sdcard: Add sd_cmd_ERASE handler (CMD38)
` [PULL 57/67] hw/sd/sdcard: Add sd_cmd_LOCK_UNLOCK handler (CMD42)
` [PULL 58/67] hw/sd/sdcard: Add sd_cmd_APP_CMD handler (CMD55)
` [PULL 59/67] hw/sd/sdcard: Add spi_cmd_READ_OCR handler (CMD58)
` [PULL 60/67] hw/sd/sdcard: Add spi_cmd_CRC_ON_OFF handler (CMD59)
` [PULL 61/67] hw/sd/sdcard: Add sd_acmd_SET_BUS_WIDTH handler (ACMD6)
` [PULL 62/67] hw/sd/sdcard: Add sd_acmd_SD_STATUS handler (ACMD13)
` [PULL 63/67] hw/sd/sdcard: Add sd_acmd_SEND_NUM_WR_BLOCKS handler (ACMD22)
` [PULL 64/67] hw/sd/sdcard: Add sd_acmd_SET_WR_BLK_ERASE_COUNT handler (ACMD23)
` [PULL 65/67] hw/sd/sdcard: Add sd_acmd_SD_APP_OP_COND handler (ACMD41)
` [PULL 66/67] hw/sd/sdcard: Add sd_acmd_SET_CLR_CARD_DETECT handler (ACMD42)

[PATCH v3 0/3] riscv: sophgo: add thermal sensor support for cv180x/sg200x SoCs
 2024-07-02  9:30 UTC  (8+ messages)
` [PATCH v3 1/3] dt-bindings: thermal: sophgo,cv1800-thermal: Add Sophgo CV1800 thermal
` [PATCH v3 2/3] riscv: dts: sophgo: cv18xx: Add sensor device and thermal zone
` [PATCH v3 3/3] thermal: cv180x: Add cv180x thermal driver support

[PATCH 1/2] drivers: replace printf with log macros
 2024-07-02  9:31 UTC  (5+ messages)
` [PATCH 2/2] drivers: replace printf with fprintf for debug functions

Kernel modules compression handling
 2024-07-02  9:31 UTC 

[PATCH 1/1] mm/slab: fix 'variable obj_exts set but not used' warning
 2024-07-02  9:31 UTC  (4+ messages)

[PATCH printk v2 00/18] add threaded printing + the rest
 2024-07-02  9:30 UTC  (12+ messages)
` [PATCH printk v2 12/18] printk: Add kthread for all legacy consoles

[qcom:arm64-fixes-for-6.10 6/11] arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: touchscreen@10: compatible:0: 'elan,ekth5015m' is not one of ['elan,ekth6915', 'ilitek,ili2901']
 2024-07-02  9:30 UTC 

[Buildroot] [PATCH 1/1] package/grpc: update the patches to be applied with fuzz 0
 2024-07-02  9:29 UTC 

[PATCH] tools: hv: lsvmbus: change shebang to use python3
 2024-07-02  9:29 UTC  (3+ messages)

[PATCH] thermal/core: Introduce user trip points
 2024-07-02  9:29 UTC  (3+ messages)

[PATCH v5 0/3] fix secondary process PCI UIO resource problem
 2024-07-02  9:28 UTC  (3+ messages)
` [PATCH v6 0/2] "

[PATCH v3 0/4] Add Airoha EN7581 PCIe support
 2024-07-02  9:28 UTC  (5+ messages)
` [PATCH v3 4/4] PCI: mediatek-gen3: Add Airoha EN7581 support

[f2fs-dev] [PATCH v2 0/2] new struct io_work and use it in f2fs fsverity work
 2024-07-02  9:27 UTC  (6+ messages)
` [f2fs-dev] [PATCH v2 1/2] workqueue: new struct io_work
        `  "

[PATCH net-next 0/6] net: phy: dp83869: Add support for downstream SFP cages
 2024-07-02  9:28 UTC  (9+ messages)
` [PATCH net-next 1/6] net: phy: dp83869: Disable autonegotiation in RGMII/1000Base-X mode
` [PATCH net-next 6/6] net: phy: dp83869: Fix link up reporting in SGMII bridge mode

[PATCH] netfilter: remove unnecessary assignment in translate_table
 2024-07-02  9:28 UTC  (2+ messages)

[RFC PATCH 0/2] drm/ttm: support device w/o coherency
 2024-07-02  9:27 UTC  (9+ messages)
` [RFC PATCH 2/2] drm/ttm: downgrade cached to write_combined when snooping not available

[PATCH v2 1/2] drm/xe/bmg: implement Wa_16023588340
 2024-07-02  9:26 UTC  (5+ messages)
` [PATCH v2 2/2] drm/i915: disable fbc due to Wa_16023588340

[PATCH 0/2] Added hairpin out of buffer counters
 2024-07-02  9:26 UTC  (2+ messages)

RSUGGEST with rpm
 2024-07-02  9:25 UTC  (4+ messages)
` [yocto] "

linux-next: manual merge of the tip tree with the pm tree
 2024-07-02  9:25 UTC  (2+ messages)

[PATCH hotfix] mm: fix crashes from deferred split racing folio migration
 2024-07-02  9:25 UTC  (2+ messages)

[PATCH] net/mlx5: increase max pattern templates
 2024-07-02  9:25 UTC  (2+ messages)

[PATCH v6 0/6] slab: Introduce dedicated bucket allocator
 2024-07-02  9:24 UTC  (4+ messages)
` [PATCH v6 4/6] mm/slab: Introduce kmem_buckets_create() and family

[PATCH net-next v13 00/15] stmmac: Add Loongson platform support
 2024-07-02  9:24 UTC  (10+ messages)
` [PATCH net-next v13 06/15] net: stmmac: dwmac-loongson: Detach GMAC-specific platform data init
` [PATCH net-next v13 09/15] net: stmmac: dwmac-loongson: Introduce PCI device info data

[PATCH v2] irqchip/gic-v3: Pass #redistributor-regions to gic_of_setup_kvm_info()
 2024-07-02  9:24 UTC 

[PATCH net-next v2 0/7] net: ethernet: ti: am65-cpsw: Add multi queue RX support
 2024-07-02  9:24 UTC  (5+ messages)
` [PATCH net-next v2 6/7] net: ethernet: ti: cpsw_ale: add helper to setup classifier defaults

[PATCH v8 1/2] drm/i915/panelreplay: Panel replay workaround with VRR
 2024-07-02  9:24 UTC  (2+ messages)
` ✗ Fi.CI.SPARSE: warning for series starting with [v8,1/2] "

[PATCH v2 2/2] test_bpf: Introduce an skb_segment test for frag_list whose head_frag=true and gso_size was mangled
 2024-07-02  9:23 UTC  (3+ messages)
` [PATCH v2 1/2] net: Fix skb_segment when splitting gso_size mangled skb having linear-headed frag_list whose head_frag=true

FW: linux-6.6.y: Regression in amd-pstate cpufreq driver since 6.6.34
 2024-07-02  9:23 UTC  (7+ messages)
    `  "

[PATCH] board: phytec: k3: k3_ddrss_patch: Add ddr phy reg count
 2024-07-02  9:22 UTC 

[GIT PULL] Counter updates for 6.11
 2024-07-02  9:22 UTC 

[LTP] [PATCH 00/10] landlock testing suite
 2024-07-02  9:20 UTC  (5+ messages)
` [LTP] [PATCH 05/10] Add landlock01 test

[PATCH] xen: add missing MODULE_DESCRIPTION() macros
 2024-07-02  9:20 UTC  (3+ messages)

[PATCH 0/2] Add Mobileye EyeQ reset support
 2024-07-02  9:19 UTC  (5+ messages)
` [PATCH 2/2] reset: eyeq: add platform driver

[PATCH v2] scsi: sd: Do not repeat the starting disk message
 2024-07-02  9:17 UTC  (2+ messages)

[PATCH] arm64: dts: qcom: sm8550-hdk: add the Wifi node
 2024-07-02  9:16 UTC 

[PATCH v2] scripts/make_fit: Support decomposing DTBs
 2024-07-02  9:16 UTC  (2+ messages)

[PATCH 0/9] AT24 EEPROM MTD Support
 2024-07-02  9:16 UTC  (12+ messages)
` [PATCH 9/9] eeprom: at24: remove deprecated Kconfig symbol

[PATCH 0/2] Import environment variables from FIT configuration
 2024-07-02  9:16 UTC  (2+ messages)

[PATCH v2 0/4] kbuild: replace $(srctree)/$(src) with $(src) in Makefiles
 2024-07-02  9:15 UTC  (10+ messages)
` [PATCH v2 4/4] kbuild: use $(src) instead of $(srctree)/$(src) for source directory

[RESEND Patch 1/2] perf/x86: Remove perf_events_lapic_init() calling from x86_pmu_enable()
 2024-07-02 22:57 UTC  (2+ messages)

[PATCH v5 0/2] image-bootfiles: new class
 2024-07-02  9:15 UTC  (2+ messages)

[PATCH RESEND libgpiod v2 00/18] dbus: add GLib-based DBus daemon and command-line client
 2024-07-02  9:15 UTC  (5+ messages)
` [PATCH RESEND libgpiod v2 10/18] dbus: add the API definitions

[PATCH 1/4] drm/scheduler: implement hardware time accounting
 2024-07-02  9:15 UTC  (4+ messages)

next/pending-fixes build: 8 builds: 0 failed, 8 passed, 19 warnings (v6.10-rc6-174-gf516b72fa9cc1)
 2024-07-02  9:14 UTC 

[PATCH] Documentation: arm64: Update memory.rst for TBI
 2024-07-02  9:13 UTC 

Regarding support for WFX backend for software updates in CIP Images
 2024-07-02  9:14 UTC  (6+ messages)
  ` [cip-dev] "

[Patch v6] i2c: pnx: Fix potential deadlock warning from del_timer_sync() call in isr
 2024-07-02  9:13 UTC  (3+ messages)

[PATCH] hw/dma: Add Intel I/OAT DMA controller emulation
 2024-07-02  9:12 UTC 

lack of permission checking with intel-iommu?
 2024-07-02  9:12 UTC  (7+ messages)

FAILED: patch "[PATCH] ata: libata-core: Fix null pointer dereference on error" failed to apply to 6.9-stable tree
 2024-07-02  9:11 UTC  (3+ messages)

[RFC PATCH v1 00/18] Provide a new two step DMA API mapping API
 2024-07-02  9:09 UTC  (19+ messages)
` [RFC PATCH v1 01/18] dma-mapping: query DMA memory type
` [RFC PATCH v1 02/18] dma-mapping: provide an interface to allocate IOVA
` [RFC PATCH v1 03/18] dma-mapping: check if IOVA can be used
` [RFC PATCH v1 04/18] dma-mapping: implement link range API
` [RFC PATCH v1 05/18] mm/hmm: let users to tag specific PFN with DMA mapped bit
` [RFC PATCH v1 06/18] dma-mapping: provide callbacks to link/unlink HMM PFNs to specific IOVA
` [RFC PATCH v1 07/18] iommu/dma: Provide an interface to allow preallocate IOVA
` [RFC PATCH v1 08/18] iommu/dma: Implement link/unlink ranges callbacks
` [RFC PATCH v1 09/18] RDMA/umem: Preallocate and cache IOVA for UMEM ODP
` [RFC PATCH v1 10/18] RDMA/umem: Store ODP access mask information in PFN
` [RFC PATCH v1 11/18] RDMA/core: Separate DMA mapping to caching IOVA and page linkage
` [RFC PATCH v1 12/18] RDMA/umem: Prevent UMEM ODP creation with SWIOTLB
` [RFC PATCH v1 13/18] vfio/mlx5: Explicitly use number of pages instead of allocated length
` [RFC PATCH v1 14/18] vfio/mlx5: Rewrite create mkey flow to allow better code reuse
` [RFC PATCH v1 15/18] vfio/mlx5: Explicitly store page list
` [RFC PATCH v1 16/18] vfio/mlx5: Convert vfio to use DMA link API
` [RFC PATCH v1 17/18] block: export helper to get segment max size
` [RFC PATCH v1 18/18] nvme-pci: use new dma API

[PATCH] mm: Enable setting -1 for vm.percpu_pagelist_high_fraction to set the minimum pagelist
 2024-07-02  9:08 UTC  (4+ messages)

[PATCH 5.4/5.10/5.15] nfs: Leave pages in the pagecache if readpage failed
 2024-07-02  9:10 UTC  (2+ messages)

[v2 1/1] hw/i386/acpi-build: add OSHP method support for SHPC driver load
 2024-07-02  9:09 UTC  (9+ messages)

FAILED: patch "[PATCH] pwm: stm32: Refuse too small period requests" failed to apply to 6.9-stable tree
 2024-07-02  9:08 UTC  (3+ messages)
` [PATCH 6.9.y and older] pwm: stm32: Refuse too small period requests

[yocto-autobuilder-helper][PATCH] config.json: use private DL_DIR for AUH runs
 2024-07-02  9:06 UTC 

[PATCH v4 0/5] rcar-vin: Add support for R-Car V4M
 2024-07-02  9:06 UTC  (4+ messages)
` [PATCH v4 1/5] dt-bindings: media: renesas,vin: Add Gen4 family fallback

[PATCH net-next] net: ethernet: mediatek: Allow gaps in MAC allocation
 2024-07-02  9:05 UTC  (3+ messages)

[PATCH 0/2] btrfs-progs: small cleanups related to subvolume creation
 2024-07-02  9:04 UTC  (3+ messages)
` [PATCH 1/2] btrfs-progs: remove fs_info parameter from btrfs_create_tree()
` [PATCH 2/2] btrfs-progs: introduce btrfs_make_subvolume()

[PATCH mptcp-net 0/3] mptcp: fix signal endpoint readd
 2024-07-02  9:03 UTC  (5+ messages)
` [PATCH mptcp-net 2/3] selftests: mptcp: add explicit test case for remove/readd
` [PATCH mptcp-net 3/3] selftests: mptcp: fix error path

[PATCH v6 0/2] power: supply: add support for MAX1720x standalone fuel
 2024-07-02  9:03 UTC  (3+ messages)
` [PATCH v6 1/2] dt-bindings: power: supply: add support for MAX17201/MAX17205 fuel gauge
` [PATCH v6 2/2] power: supply: add support for MAX1720x standalone "

[PATCH v4 0/2] Introduce EN7581 ethernet support
 2024-07-02  9:01 UTC  (4+ messages)
` [PATCH v4 1/2] dt-bindings: net: airoha: Add EN7581 ethernet controller

[PATCH v4 0/6] perf: Make SIGTRAP and __perf_pending_irq() work on RT
 2024-07-02  9:01 UTC  (5+ messages)
` [PATCH v4 2/6] perf: Enqueue SIGTRAP always via task_work

[PATCH BlueZ v2] shared/csip: add NULL checks to foreach_csis_service()
 2024-07-02  9:01 UTC 

[PATCH] iommu/arm-smmu-qcom: record reason for deferring probe
 2024-07-02  9:01 UTC 

[PATCH] btrfs-progs: inspect tree-stats: support to show a specified tree
 2024-07-02  8:55 UTC 

[PATCH ethtool 1/2]: add json support for base command
 2024-07-02  9:00 UTC  (3+ messages)

[PATCH 1/9] rust: Oe-selftest fixes for rust v1.76
 2024-07-02  8:59 UTC  (3+ messages)
` [PATCH 9/9] rust: Upgrade 1.77.2->1.78.0
    ` [OE-core] "

[PATCH v23 00/19] Add support for Sub-NUMA cluster (SNC) systems
 2024-07-02  8:59 UTC  (3+ messages)
` [PATCH v23 17/19] x86/resctrl: Enable shared RMID mode on Sub-NUMA Cluster "

[PATCH 1/3] fpga: Add Efinix Trion & Titanium serial SPI programming driver
 2024-07-02  8:57 UTC  (4+ messages)
` [PATCH v2 0/3] Summary of changes
  ` [PATCH v2 3/3] dt-bindings: vendor-prefix: Add prefix for Efinix, Inc

[PATCH v1] automation: add python3-packaging to suse images
 2024-07-02  8:56 UTC 

[Bug 209177] mpt2sas_cm0: failure at drivers/scsi/mpt3sas/mpt3sas_scsih.c:10791/_scsih_probe()!
 2024-07-02  8:55 UTC 

[isar-cip-core][PATCH v1 0/1] Set size for rootfs partition in .wks file for reproducibility
 2024-07-02  8:55 UTC  (3+ messages)
` [isar-cip-core][PATCH v1 1/1] wic: Set size for rootfs partition

[PATCH BlueZ v1] shared/vcp: add NULL checks to foreach_aics_service()
 2024-07-02  8:55 UTC 

[PATCH v3 0/4] Svvptc extension to remove preventive sfence.vma
 2024-07-02  8:50 UTC  (3+ messages)
` [PATCH v3 4/4] riscv: Stop emitting preventive sfence.vma for new userspace mappings with Svvptc


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.