Tags give the ability to mark specific points in history as being important
-
-
-
-
4.9.241-107
a0c77c54 · · -
4.9.241-108
a0c77c54 · · -
4.9.241-66
a0c77c54 · · -
4.9.241-67
a0c77c54 · · -
irq-core-2020-12-23
64a1b95b · ·A treewide cleanup of interrupt descriptor (ab)use with all sorts of racy accesses, inefficient and disfunctional code. The goal is to remove the export of irq_to_desc() to prevent these things from creeping up again.
-
4.9.241-65
f9de720d · · -
-
-
-
-
-
xfs-5.11-merge-4
e8222613 · ·New code for 5.11: - Introduce a "needsrepair" "feature" to flag a filesystem as needing a pass through xfs_repair. This is key to enabling filesystem upgrades (in xfs_db) that require xfs_repair to make minor adjustments to metadata. - Refactor parameter checking of recovered log intent items so that we actually use the same validation code as them that generate the intent items. - Various fixes to online scrub not reacting correctly to directory entries pointing to inodes that cannot be igetted. - Refactor validation helpers for data and rt volume extents. - Refactor XFS_TRANS_DQ_DIRTY out of existence. - Fix a longstanding bug where mounting with "uqnoenforce" would start user quotas in non-enforcing mode but /proc/mounts would display "usrquota", implying that they are being enforced. - Don't flag dax+reflink inodes as corruption since that is a valid (but not fully functional) combination right now. - Clean up raid stripe validation functions. - Refactor the inode allocation code to be more straightforward. - Small prep cleanup for idmapping support. - Get rid of the xfs_buf_t typedef.
-
v5.4-stm32mp-r2.1
e1b933d6 · ·The following changes since commit a56628a8ab25734a771086664cc80c215a198438: serial: stm32: add FIFO flush when port is closed (2020-10-20 12:19:03 +0200) are available in the Git repository at: https://github.com/STMicroelectronics/linux.git tags/v5.4-stm32mp-r2.1 for you to fetch changes up to e1b933d6960ad6412d6ab2961dcd394dd1234bf4: ARM: dts: stm32: activate alternate REQ/ACK dma protocol for uart (2020-12-07 17:36:14 +0100) ---------------------------------------------------------------- Amelie Delaunay (3): dmaengine: stm32-dma: mark pending descriptor complete in terminate_all dt-bindings: dma: add alternative REQ/ACK protocol selection in stm32-dma dmaengine: stm32-dma: add alternate REQ/ACK protocol management Antonio Borneo (1): net: phy: realtek: read actual speed on rtl8211f to detect downshift Erwan Le Ray (5): serial: stm32: update rx dma state variable name serial: stm32: fix transmission complete error handling serial: stm32: update transmission complete error message serial: stm32: fix FIFO flush in shutdown serial: stm32: fix FIFO flush in startup and set_termios Heiner Kallweit (1): net: phy: realtek: read actual speed to detect downshift Lucas Stach (1): can: m_can_platform: don't call m_can_class_suspend in runtime suspend Valentin Caron (10): serial: stm32: fix call of a non-atomic function in stop_rx ARM: dts: stm32: activate usart3 for stm32mp157f-ev1 a7-examples ARM: dts: stm32: activate usart3 and uart7 for stm32mp157f-dk2 a7-examples serial: stm32: prevent TDR register overwrite when sending x_char serial: stm32: change stm32_port->status to local variable serial: stm32: rework tx dma state condition serial: stm32: fix flow control transfer in DMA mode serial: stm32: fix software flow control transfer serial: stm32: fix dual tx dma transaction ARM: dts: stm32: activate alternate REQ/ACK dma protocol for uart .../devicetree/bindings/dma/stm32-dma.txt | 7 ++ arch/arm/boot/dts/stm32mp151.dtsi | 28 ++--- arch/arm/boot/dts/stm32mp157f-dk2-a7-examples.dts | 8 ++ arch/arm/boot/dts/stm32mp157f-ev1-a7-examples.dts | 4 + drivers/dma/stm32-dma.c | 7 ++ drivers/net/can/m_can/m_can_platform.c | 2 - drivers/net/phy/realtek.c | 61 +++++++++- drivers/tty/serial/stm32-usart.c | 131 ++++++++++++++------- drivers/tty/serial/stm32-usart.h | 5 +- 9 files changed, 188 insertions(+), 65 deletions(-) -
-
-
irq-core-2020-12-15
3c41e57a · ·Generic interrupt and irqchips subsystem: Core: - Consolidation and robustness changes for irq time accounting - Cleanup and consolidation of irq stats - Remove the fasteoi IPI flow which has been proved useless - Provide an interface for converting legacy interrupt mechanism into irqdomains Drivers: The rare event of not having completely new chip driver code, just new DT bindings and extensions of existing drivers to accomodate new variants! - Preliminary support for managed interrupts on platform devices - Correctly identify allocation of MSIs proxyied by another device - Generalise the Ocelot support to new SoCs - Improve GICv4.1 vcpu entry, matching the corresponding KVM optimisation - Work around spurious interrupts on Qualcomm PDC - Random fixes and cleanups Thanks, tglx -