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

Fix sparse image file cause file system corrputed #5869

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Commits on Oct 28, 2023

  1. Revert "github: disable visionOS and build on Xcode 15.0"

    This reverts commit ab90be1.
    osy committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    83d0421 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d74131e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9db6076 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2023

  1. build: update ANGLE

    osy committed Oct 29, 2023
    Configuration menu
    Copy the full SHA
    917f357 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Configuration menu
    Copy the full SHA
    dacf074 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. fix linux virtual machine (ubuntu 23.10.1) report error

    "
    EXT4-fs error (device vda2): ext4_validate_block_bitmap:421: comm kworker/u20:0 bg 2230: bad block bitmap checksum
    EXT4-fs  (vda2): Delayed block allocation failed for inode 14327754 at logical offset 0 with max blocks 47 with error 74
    EXT4-fs  (vda2):  THis should not happen!! Data will be lost
    "
    the reason is virtual machine disk image is created as sparse file
    
    truncate command make a sparse file, the space will not alloc before really used
    this should be better at most time.
    but maybe not suitable for virtual machines, especially in the case of heavy IO loads
    this may give extra time delay and operational interruptions when system do really space alloc
    this behavior may cause later write completed before previous write
    the incorrect write order may cause file system corrputed
    wangqiang1588 committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    3d5019a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    777ab17 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

  1. virtual disk cache mode have bugs,when it is enabled or set to auto (…

    …default value),may cause linux file system corrputed, especially in the case of heavy IO loads
    wangqiang1588 committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    e922f43 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Configuration menu
    Copy the full SHA
    b2d62e6 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Configuration menu
    Copy the full SHA
    a1ffa25 View commit details
    Browse the repository at this point in the history