Tags

Tags give the ability to mark specific points in history as being important
  • iomap-4.19-merge-1

    Changes for 4.19:
    - Add shared iomap infrastructure to handle page cache reads and
      writeback without buffer heads (xfs).
    - Add inline data support (gfs2).
    
  • xfs-4.19-merge-4

    Changes for 4.19:
    - Use extent maps to track pagecache page status instead of bufferhead
      state.
    - Refactor pagecache read and write paths to use the new iomap library
      functions, which enable us to drop the old bufferhead code for
      pagesize == blocksize filesystems.
    - Set up parallel per-block-per-page metadata to track subpage
      information that was tracked by buffer heads, which enables us to drop
      the old bufferhead code for pagesize > blocksize filesystems.
    - Tie a deferred ops control structure to a transaction so that we can
      take advantage of an upper-level dfops without having to plumb pointer
      passing through the code.
    - Refactor the deferred ops code to track deferred ops as part of the
      transaction structure (instead of as a separate data structure) so
      that we can simplify the scoping rules around defer_ops.
    - Refactor twisty delwri buffer submission code to avoid deadlocks.
    - Shorten and fix indenting problems in the scrub code.
    - Detect obviously bad summary counts at mount and fix them.
    - Directly associate deferred ops control structure with a transaction
      so that callers no longer have to manage it themselves.
    - Remove a couple of IRIX-era inode macros.
    - Remove the long-deprecated 'barrier' and 'nobarrier' mount options.
    - Clean up the inode fork structure a bit.
    - Check for bad fs summary counter values in the superblock.
    - Reduce COW fork lookups during writeback.
    - Refactor the deferred ops control structures into the transaction
      structure, thereby eliminating the need for transaction users to
      handle the deferred ops as a separate data structure.
    - Various fixes and cleanups.
    
  • for-linus-20180803

    for-linus-20180803
    
  • v4.9.117

    ddd28fff · Linux 4.9.117 ·
    This is the 4.9.117 stable release
    
  • xfs-4.18-fixes-5

    Changes since last update:
    - Fix incorrect shifting in the iomap bmap functions.
    
  • v4.14.60

    deaacd62 · Linux 4.14.60 ·
    This is the 4.14.60 stable release
    
  • v4.17.12

    506f6fba · Linux 4.17.12 ·
    This is the 4.17.12 stable release
    
  • drm-misc-next-fixes-2018-08-02

    Fixes an oops on the DP CEC code and a memory leak on the vkms driver.
    
  • pm-urgent-4.18

    9b7c19e9 · Merge branch 'pm-tools' ·
    Urgent power management fixes for 4.18
    
     - Use ACPI FADT preferred PM Profile to distinguish Skylake
       desktop processors from some server ones with the same model
       number in order to limit the scope of the recent IO-wait boost
       optimization to servers, as intended (Srinivas Pandruvada).
    
     - Fix several issues in the turbostat utility:
       * Fix the -S option on 1-CPU systems (Len Brown).
       * Fix computations using incorrect processor core counts (Artem
         Bityutskiy).
       * Fix the x2apic debug message (Len Brown).
       * Fix logical node enumeration to allow for non-sequential
         physical nodes (Prarit Bhargava).
       * Fix reported family on modern AMD processors (Calvin Walton).
       * Clarify the RAPL column information in the man page (Len Brown).
    
  • xfs-4.19-merge-3

    Changes for 4.19:
    - iomap: support inline data, page done callbacks, and partial dio
      writes to support gfs2
    - iomap: add library functions for page cache reads and writes in
      preparation to remove buffer heads from xfs.
    - Use extent maps to track pagecache page status instead of bufferhead
      state.
    - Refactor pagecache read and write paths to use the new iomap library
      functions, which enable us to drop the old bufferhead code for
      pagesize == blocksize filesystems.
    - Set up parallel per-block-per-page metadata to track subpage
      information that was tracked by buffer heads, which enables us to drop
      the old bufferhead code for pagesize > blocksize filesystems.
    - Tie a deferred ops control structure to a transaction so that we can
      take advantage of an upper-level dfops without having to plumb pointer
      passing through the code.
    - Refactor the deferred ops code to track deferred ops as part of the
      transaction structure (instead of as a separate data structure) so
      that we can simplify the scoping rules around defer_ops.
    - Refactor twisty delwri buffer submission code to avoid deadlocks.
    - Shorten and fix indenting problems in the scrub code.
    - Detect obviously bad summary counts at mount and fix them.
    - Directly associate deferred ops control structure with a transaction
      so that callers no longer have to manage it themselves.
    - Remove a couple of IRIX-era inode macros.
    - Remove the long-deprecated 'barrier' and 'nobarrier' mount options.
    - Clean up the inode fork structure a bit.
    - Check for bad fs summary counter values in the superblock.
    - Reduce COW fork lookups during writeback.
    - Various fixes and cleanups.
    
  • wireless-drivers-for-davem-2018-07-31

    wireless-drivers fixes for 4.18
    
    Last set of fixes before 4.18 is released
    
    iwlwifi
    
    * add new IDs for cards already available on the market
    
    brcmfmac
    
    * fix a regression introduced in v4.17
    
  • acpi-urgent-4.18

    5f95d39b · Merge branch 'acpi-soc' ·
    Urgent ACPI fixes for 4.18
    
     - Fix a recent ACPICA regression introduced by a previous fix
       that caused control method execution at the table level to be
       mishandled by mistake (Erik Schmauss).
    
     - Fix a hibernation regression from the 4.15 cycle in the ACPI
       driver for Intel SoCs (LPSS) that caused the platform firmware
       to be confused during resume from hibernation by the driver's
       PM quirks which was fixed for system-wide suspend/resume (ACPI
       S3) earlier in this cycle, but that previous fix missed the
       hibernation (ACPI S4) case (Rafael Wysocki).
    
  • xfs-4.19-merge-2

    Changes for 4.19:
    - iomap: support inline data, page done callbacks, and partial dio
      writes to support gfs2
    - iomap: add library functions for page cache reads and writes in
      preparation to remove buffer heads from xfs.
    - Use extent maps to track pagecache page status instead of bufferhead
      state.
    - Refactor pagecache read and write paths to use the new iomap library
      functions, which enable us to drop the old bufferhead code for
      pagesize == blocksize filesystems.
    - Set up parallel per-block-per-page metadata to track subpage
      information that was tracked by buffer heads, which enables us to drop
      the old bufferhead code for pagesize > blocksize filesystems.
    - Tie a deferred ops control structure to a transaction so that we can
      take advantage of an upper-level dfops without having to plumb pointer
      passing through the code.
    - Refactor the deferred ops code to track deferred ops as part of the
      transaction structure (instead of as a separate data structure) so
      that we can simplify the scoping rules around defer_ops.
    - Refactor twisty delwri buffer submission code to avoid deadlocks.
    - Shorten and fix indenting problems in the scrub code.
    - Detect obviously bad summary counts at mount and fix them.
    - Directly associate deferred ops control structure with a transaction
      so that callers no longer have to manage it themselves.
    - Remove a couple of IRIX-era inode macros.
    - Remove the long-deprecated 'barrier' and 'nobarrier' mount options.
    - Clean up the inode fork structure a bit.
    - Various fixes and cleanups.
    
  • v4.18-rc7

    acb18725 · Linux 4.18-rc7 ·
    Linux 4.18-rc7
    
  • gpio-v4.18-2

    GPIO fixes for v4.18:
    - OF flag fix for special regulator flags.
    - Fix up the Uniphier IRQ callback.
    
  • v4.17.11

    84d52eb0 · Linux 4.17.11 ·
    This is the 4.17.11 stable release
    
  • v4.14.59

    53208e12 · Linux 4.14.59 ·
    This is the 4.14.59 stable release
    
  • v4.9.116

    94c67449 · Linux 4.9.116 ·
    This is the 4.9.116 stable release