Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[lineage-17.1] defconfig update #15

Merged

Commits on Oct 19, 2020

  1. Configuration menu
    Copy the full SHA
    c8cf455 View commit details
    Browse the repository at this point in the history
  2. config: yoshino: Enable CONFIG_AIO_SSD_ONLY

    If the system is running on NAND-based storage, without
    mechanical drives, we don't need to manage the plug/unplug
    of the actual block because we don't have to count the
    time for the head to reach that disk physical location.
    Solid state storage have no head to move and no location
    to "physically reach", as the block is being retrieved
    in the exact moment we request it.
    
    The do_io_submit function expects the storage device to
    be ready to deliver the block (aka - next block of the
    queue to process), therefore it's safe to remove useless
    waits on systems using only that type of storage.
    
    This patch adds a configuration option to enable the
    SSD-only optimization for the Linux Asynchronous IO
    framework.
    Enabling it on systems with rotational storage (or mixed)
    WILL hit storage performance A LOT.
    derfelot committed Oct 19, 2020
    Configuration menu
    Copy the full SHA
    840e612 View commit details
    Browse the repository at this point in the history