All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2024-01-12 12:37:15 to 2024-01-12 13:16:14 UTC [more...]

[PATCH RESEND] mac802154: Fix uninit-value access in ieee802154_hdr_push_sechdr
 2024-01-12 13:15 UTC  (2+ messages)

[PATCH 00/88] esp: rework ESP emulation to use a SCSI phase-based state machine
 2024-01-12 12:54 UTC  (86+ messages)
` [PATCH 01/88] esp: don't clear cmdfifo when esp_select() fails in get_cmd()
` [PATCH 02/88] esp: move existing request cancel check into esp_select()
` [PATCH 03/88] esp.c: add FIFO wraparound support to esp_fifo_pop_buf()
` [PATCH 04/88] esp: remove FIFO clear from esp_select()
` [PATCH 05/88] esp: move esp_select() to ESP selection commands from get_cmd()
` [PATCH 06/88] esp: update esp_set_tc() to set STAT_TC flag
` [PATCH 07/88] esp: start removal of manual STAT_TC setting when transfer counter reaches zero
` [PATCH 08/88] esp: move command execution logic to new esp_run_cmd() function
` [PATCH 09/88] esp: update TC check logic in do_dma_pdma_cb() to check for TC == 0
` [PATCH 10/88] esp: move buffer and TC logic into separate to/from device paths in esp_do_dma()
` [PATCH 11/88] esp.c: remove unused case from esp_pdma_read()
` [PATCH 12/88] esp.c: don't accumulate directly into cmdfifo
` [PATCH 13/88] esp.c: decrement the TC during MESSAGE OUT and COMMAND phases
` [PATCH 14/88] esp.c: introduce esp_set_phase() helper function
` [PATCH 15/88] esp.c: remove another set of manual STAT_TC updates
` [PATCH 16/88] esp.c: remove MacOS TI workaround that pads FIFO transfers to ESP_FIFO_SZ
` [PATCH 17/88] esp.c: don't reset the TC and ESP_RSEQ state when executing a SCSI command
` [PATCH 18/88] esp.c: don't clear RFLAGS register when DMA is complete
` [PATCH 19/88] esp: remove zero transfer size check from esp_do_dma()
` [PATCH 20/88] esp.c: update condition for esp_dma_done() in esp_do_dma() from device path
` [PATCH 21/88] esp.c: update condition for esp_dma_done() in esp_do_dma() to "
` [PATCH 22/88] esp.c: ensure that the PDMA callback is called for every device read
` [PATCH 23/88] esp.c: don't immediately raise INTR_BS if SCSI data needed in esp_do_dma()
` [PATCH 24/88] esp.c: remove TC adjustment in esp_do_dma() from device path
` [PATCH 25/88] esp.c: remove unaligned adjustment in do_dma_pdma_cb() to "
` [PATCH 26/88] esp.c: remove unneeded if() check in esp_transfer_data()
` [PATCH 27/88] esp.c: update end of transfer logic at the end of esp_transfer_data()
` [PATCH 28/88] esp.c: consolidate async_len and TC == 0 checks in do_dma_pdma_cb() and esp_do_dma()
` [PATCH 29/88] esp.c: fix premature end of phase logic esp_command_complete
` [PATCH 30/88] esp.c: move TC and FIFO check logic into esp_dma_done()
` [PATCH 31/88] esp.c: rename esp_dma_done() to esp_dma_ti_check()
` [PATCH 32/88] esp.c: copy PDMA logic for transfers to device from do_dma_pdma_cb() to esp_do_dma()
` [PATCH 33/88] esp.c: copy logic for do_cmd transfers "
` [PATCH 34/88] esp.c: update esp_do_dma() bypass if async_len is zero to include non-zero transfer check
` [PATCH 35/88] esp.c: move end of SCSI transfer check after TC adjustment in do_dma_pdma_cb()
` [PATCH 36/88] esp.c: remove s_without_satn_pdma_cb() PDMA callback
` [PATCH 37/88] esp.c: introduce esp_get_phase() function
` [PATCH 38/88] esp.c: convert esp_do_dma() to switch statement based upon SCSI phase
` [PATCH 39/88] esp.c: convert do_dma_pdma_db() "
` [PATCH 40/88] esp.c: convert esp_do_nodma() "
` [PATCH 41/88] esp.c: convert esp_do_dma() do_cmd path to check for SCSI phase instead
` [PATCH 42/88] esp.c: convert do_dma_pdma_cb() "
` [PATCH 43/88] esp.c: convert esp_do_nodma() "
` [PATCH 44/88] esp.c: convert esp_reg_write() "
` [PATCH 45/88] esp.c: remove do_cmd from ESPState
` [PATCH 46/88] esp.c: untangle MESSAGE OUT and COMMAND phase logic in esp_do_dma()
` [PATCH 47/88] esp.c: untangle MESSAGE OUT and COMMAND phase logic in do_dma_pdma_cb()
` [PATCH 49/88] esp.c: move CMD_SELATN end of message phase detection to esp_do_dma() and do_dma_pdma_cb()
` [PATCH 50/88] esp.c: move CMD_TI "
` [PATCH 51/88] esp.c: don't use get_cmd() for CMD_SEL DMA commands
` [PATCH 52/88] esp.c: move CMD_SELATNS end of command logic to esp_do_dma() and do_dma_pdma_cb()
` [PATCH 53/88] esp.c: replace do_dma_pdma_cb() with esp_do_dma()
` [PATCH 54/88] esp.c: move CMD_ICCS command logic to esp_do_dma()
` [PATCH 55/88] esp.c: always use esp_do_dma() in pdma_cb()
` [PATCH 56/88] esp.c: remove unused PDMA callback implementation
` [PATCH 57/88] esp.c: rename data_in_ready to to data_ready
` [PATCH 58/88] esp.c: separate logic based upon ESP command in esp_command_complete()
` [PATCH 59/88] esp.c: separate logic based upon ESP command in esp_transfer_data()
` [PATCH 60/88] esp.c: use deferred interrupts for both DATA IN and DATA OUT phases
` [PATCH 61/88] esp.c: remove DATA IN phase logic when reading from FIFO
` [PATCH 62/88] esp.c: zero command register when TI command terminates due to phase change
` [PATCH 63/88] esp.c: remove unneeded ti_cmd field
` [PATCH 64/88] esp.c: don't raise INTR_BS interrupt in DATA IN phase until TI command issued
` [PATCH 65/88] esp.c: move non-DMA TI logic to separate esp_nodma_ti_dataout() function
` [PATCH 66/88] esp.c: process non-DMA FIFO writes in esp_do_nodma()
` [PATCH 67/88] esp.c: replace get_cmd() with esp_do_nodma()
` [PATCH 68/88] esp.c: move write_response() non-DMA logic to esp_do_nodma()
` [PATCH 69/88] esp.c: consolidate end of command sequence after ICCS command
` [PATCH 70/88] esp.c: ensure that STAT_INT is cleared when reading ESP_RINTR
` [PATCH 71/88] esp.c: don't clear the SCSI phase "
` [PATCH 72/88] esp.c: handle TC underflow for DMA SCSI requests
` [PATCH 73/88] esp.c: remove restriction on FIFO read access when DMA memory routines defined
` [PATCH 74/88] esp.c: handle non-DMA FIFO writes used to terminate DMA commands
` [PATCH 75/88] esp.c: improve ESP_RSEQ logic consolidation
` [PATCH 77/88] esp.c: only transfer non-DMA MESSAGE OUT phase data for specific commands
` [PATCH 79/88] esp.c: consolidate DMA and PDMA logic in DATA IN phase
` [PATCH 80/88] esp.c: consolidate DMA and PDMA logic in MESSAGE OUT phase
` [PATCH 81/88] esp.c: remove redundant n variable in PDMA COMMAND phase
` [PATCH 82/88] esp.c: consolidate DMA and PDMA logic in STATUS and MESSAGE IN phases
` [PATCH 83/88] esp.c: replace n variable with len in esp_do_nodma()
` [PATCH 84/88] esp.c: implement DMA Transfer Pad command for DATA phases
` [PATCH 85/88] esp.c: rename irq_data IRQ to drq_irq
` [PATCH 86/88] esp.c: keep track of the DRQ state during DMA
` [PATCH 87/88] esp.c: switch TypeInfo registration to use DEFINE_TYPES() macro
` [PATCH 88/88] esp.c: add my copyright to the file

[PATCH v7 0/5] iommu/arm-smmu: introduction of ACTLR implementation for Qualcomm SoCs
 2024-01-12 13:14 UTC  (12+ messages)
` [PATCH v7 3/5] iommu/arm-smmu: introduction of ACTLR for custom prefetcher settings

[PATCH 0/5] k3-j721e: beagleboneai: Fix USB
 2024-01-12 13:14 UTC  (9+ messages)
` [PATCH 1/5] board: ti: j721e: Drop SERDES PHY init from board file
` [PATCH 2/5] usb: cdns3: avoid error messages if phys don't exist
` [PATCH 3/5] arm: dts: k3-j721e: Fix USB0 operation
` [PATCH 4/5] arm: dts: k3-j721e-beagleboneai64: Fix USB operation
` [PATCH 5/5] configs/j721e_beagleboneai64_a72_defconfig: Enable Sierra PHY

[PATCH v3 00/11] Add mediate-drm secure flow for SVP
 2024-01-12 13:13 UTC  (5+ messages)
` [PATCH v3 03/11] drm/mediatek: Add secure buffer control flow to mtk_drm_gem

[PATCH 0/2] completion: silence pseudo-ref existence check
 2024-01-12 13:12 UTC  (5+ messages)
` [PATCH 1/2] t9902: verify that completion does not print anything

[lttng-dev] LTTng sessiond daemon Assertion `buf' failed and killed
 2024-01-12 13:12 UTC 

[PATCH net] net: add more sanity check in virtio_net_hdr_to_skb()
 2024-01-12 13:11 UTC  (3+ messages)

[PATCH 0/8] cfg80211/mac80211 patches from our internal tree 2024-01-11
 2024-01-12 13:10 UTC  (3+ messages)
` [PATCH 5/8] wifi: mac80211: disallow drivers with HT wider than HE

[PATCH 1/2] tests/intel: Sync headers to grab DUMPABLE changes
 2024-01-12 13:09 UTC  (3+ messages)
` [PATCH 2/2] tests/intel: Add xe_coredump test

[PATCH v4 0/7] Add DFU and usb boot for TI am62x SK and beagleplay
 2024-01-12 13:09 UTC  (12+ messages)
` [PATCH v4 2/7] usb: dwc3: Switch to device mode on gadget start
` [PATCH v4 5/7] configs: am62x_evm_*: Enable USB and DFU support
` [PATCH v4 7/7] doc: board: Add document for DFU boot on am62x SoCs

[meta-oe][PATCH] flatpak: fix gtk-doc build
 2024-01-12 13:08 UTC 

[PATCH] dma-buf/dma-resv: fix spelling
 2024-01-12 13:05 UTC  (3+ messages)
` [Linaro-mm-sig] "

[GSoC][RFC] Replace use of atoi() with strtol_i(), as a microproject
 2024-01-12 13:04 UTC  (5+ messages)

[PATCH] src/af_unix: drop unused offsetof macro definition
 2024-01-12 13:03 UTC 

[GIT PULL for v6.8-rc1] media updates
 2024-01-12 13:03 UTC  (2+ messages)
` [GIT PULL for v6.8-rc1] media updates (#98610)

[PATCH] xfs: explicitly call cond_resched in xfs_itruncate_extents_flags
 2024-01-12 13:01 UTC  (5+ messages)

[PATCH 00/10] Add support for Ethernet Boot on SK-AM62
 2024-01-12 13:01 UTC  (16+ messages)
` [PATCH 01/10] board: ti: am62x: Init DRAM size in R5/A53 SPL
` [PATCH 08/10] configs: am62: Add configs for enabling ETHBOOT in R5SPL
` [PATCH 09/10] configs: am62x_evm_a53_defconfig: Enable configs required for Ethboot

[RFC][PATCH v2] fsnotify: optimize the case of no content event watchers
 2024-01-12 13:00 UTC  (3+ messages)

[PATCH v6 RESEND 0/5] crypto: LEA block cipher implementation
 2024-01-12 12:59 UTC  (3+ messages)
` [PATCH v6 RESEND 5/5] crypto: LEA block cipher x86_64 optimization

SparkLAN WNFB-265AXI (AP6275P) / bcm43752 pcie on mainline brcmfmac
 2024-01-12 12:59 UTC  (3+ messages)

[intel-lts:6.1/dovetail-xenomai 15659/15708] arch/arm/mm/fault.c:158:15: warning: no previous prototype for function 'fault_entry'
 2024-01-12 12:59 UTC 

[PATCH] drm/doc: internals: remove section on PCI legacy support
 2024-01-12 12:58 UTC  (3+ messages)

[PATCH] docs: kbuild/kconfig: reformat/cleanup
 2024-01-12 12:58 UTC 

[PATCH] tty: fix atomicity violation in n_tty_read
 2024-01-12 12:58 UTC 

[PATCH net] udp: annotate data-races around up->pending
 2024-01-12 12:56 UTC  (2+ messages)

[PATCH v2] v4l-utils: Update to 1.26.1
 2024-01-12 12:55 UTC 

[PATCH v7 0/5] Add display support for stm32f769-disco board
 2024-01-12 12:54 UTC  (4+ messages)
` [PATCH v7 1/5] dt-bindings: mfd: stm32f7: Add binding definition for DSI

[PATCH 0/2] media: rkisp1: Fix shared interrupt handling
 2024-01-12 12:54 UTC  (8+ messages)
` [PATCH 2/2] media: rkisp1: Fix IRQ handling due to shared interrupts

[PATCH 1/4] libuser: fix gtk-doc configure call
 2024-01-12 12:53 UTC  (4+ messages)
` [PATCH 2/4] libuser: remove obsolete GTKDOC_DOCDIR assignment
` [PATCH 3/4] gtksourceview4: remove check for target gtk-doc
` [PATCH 4/4] gtksourceview4: remove obsolete workaround for build failures

[libgpiod] Feedback from the Raspberry Pi community
 2024-01-12 12:53 UTC  (3+ messages)

[PATCH] xfs: ensure submit buffers on LSN boundaries in error handlers
 2024-01-12 12:55 UTC  (3+ messages)

Rework TTMs busy handling
 2024-01-12 12:51 UTC  (6+ messages)
` [PATCH 1/5] drm/vmwgfx: remove vmw_vram_gmr_placement
` [PATCH 2/5] drm/ttm: return ENOSPC from ttm_bo_mem_space
` [PATCH 3/5] drm/ttm: replace busy placement with flags v6
` [PATCH 4/5] drm/ttm: improve idle/busy handling v3
` [PATCH 5/5] drm/amdgpu: use GTT only as fallback for VRAM|GTT

[PATCH 00/13] spi: axi-spi-engine: add offload support
 2024-01-12 12:51 UTC  (9+ messages)
` [PATCH 06/13] iio: buffer: add hardware triggered buffer support
` [PATCH 10/13] iio: buffer: dmaengine: export devm_iio_dmaengine_buffer_alloc()
` [PATCH 12/13] iio: offload: add new PWM triggered DMA buffer driver

[REGRESSION] Keystone PCI driver probing and SerDes PLL timeout
 2024-01-12 12:51 UTC  (5+ messages)

[PATCH next v4 0/5] minmax: Relax type checks in min() and max()
 2024-01-12 12:49 UTC  (6+ messages)
` [PATCH next v4 1/5] minmax: Add umin(a, b) and umax(a, b)

[PATCH 0/2] ppc: Rename power5+ and power7+ for the new QOM naming rules
 2024-01-12 12:48 UTC  (2+ messages)

[Intel-wired-lan] [PATCH iwl-next v1 0/2] i40e: Log FW state in recovery mode
 2024-01-12 12:49 UTC  (4+ messages)
` [Intel-wired-lan] [PATCH iwl-next v1 2/2] i40e-linux: Add support for reading Trace Buffer
  `  "

[PATCH 0/4] turbostat msr, perf controls and aperf/mperf via perf
 2024-01-12 12:48 UTC  (5+ messages)
` [PATCH 1/4] tools/power turbostat: Add --no-msr option
` [PATCH 2/4] tools/power turbostat: Add --no-perf option
` [PATCH 3/4] tools/power turbostat: Don't print invalid ucode revision
` [PATCH 4/4] tools/power turbostat: Add reading aperf and mperf via perf API

[PULL 00/14] loongarch-to-apply queue
 2024-01-12 12:48 UTC  (2+ messages)

[PULL 0/6] Firmware/edk2 20231213 patches
 2024-01-12 12:47 UTC  (6+ messages)
      `  "

[PATCH] load_elf: fix iterator type in glue
 2024-01-12 12:46 UTC  (3+ messages)
` [PATCH v2] load_elf: fix iterators' types for elf file processing

[PATCH 00/16] arm64: dts: ti: Additional licensing and clarification
 2024-01-12 12:46 UTC  (7+ messages)
` [PATCH 05/16] arm64: dts: ti: k3-am64: Add MIT license along with GPL-2.0
` [PATCH 13/16] arm64: dts: ti: beagle*: "

ath11k and vfio-pci support
 2024-01-12 12:47 UTC  (12+ messages)

[PATCH] arm64: dts: ti: k3-am625-beagleplay: Use the builtin mdio bus
 2024-01-12 12:44 UTC  (2+ messages)

[PATCH v4 00/16] iommu/amd: SVA Support (part 3) - refactor support for GCR3 table
 2024-01-12 12:45 UTC  (6+ messages)
` [PATCH v4 07/16] iommu/amd: Introduce per-device domain ID to workaround potential TLB aliasing issue

[PATCH iproute2] man/tc-mirred: don't recommend modprobe
 2024-01-12 12:44 UTC  (2+ messages)

[PATCH] scsi: core: move scsi_host_busy() out of host lock for waking up EH handler
 2024-01-12 12:42 UTC  (3+ messages)

[PATCH 0/2] multiple representors in one device
 2024-01-12 12:42 UTC  (3+ messages)
` [PATCH 1/2] ethdev: parsing multiple representor devargs string

[PATCH iproute2-next 0/4] documentations cleanup
 2024-01-12 12:42 UTC  (3+ messages)
` [PATCH iproute2-next 1/4] man: get rid of doc/actions/mirred-usage

[PATCH 1/4] drm/xe: Add uapi for dumpable bos
 2024-01-12 12:41 UTC  (4+ messages)
` [PATCH 2/4] drm/xe: Annotate each dumpable vma as such
` [PATCH 3/4] drm/xe: Add vm snapshot mutex for easily taking a vm snapshot during devcoredump
` [PATCH 4/4] drm/xe: Implement VM snapshot support for BO's and userptr

[PATCH 1/2] glib-2.0: pull in python3-dbusmock unconditionally
 2024-01-12 12:41 UTC  (2+ messages)
` [PATCH 2/2] python: update 3.11.5 -> 3.12.1

[PATCH i-g-t 0/1] tests/intel/xe_ccs: Fix block-multicopy-inplace subtest
 2024-01-12 23:54 UTC  (2+ messages)
` ✓ CI.xeBAT: success for tests/intel/xe_ccs: Fix block-multicopy-inplace subtest (rev2)

[wireless:for-next] BUILD SUCCESS 989cd9fd1ffe1a964429325f9092ea8f0db3f953
 2024-01-12 12:40 UTC 

[PATCH i-g-t] tests/intel/xe_exec_store: Remove redundant code
 2024-01-12 12:39 UTC  (3+ messages)
` ✗ Fi.CI.BAT: failure for "

[PATCH libnftnl] set: buffer overflow in NFTNL_SET_DESC_CONCAT setter
 2024-01-12 12:39 UTC  (4+ messages)

[openeuler:OLK-6.6 691/2356] arch/arm64/include/asm/elf.h:223:9: warning: 'COMPAT_ARCH_DLINFO' macro redefined
 2024-01-12 12:36 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.