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

Add support for statvfs() to FUSE #3304

Open
wants to merge 2 commits into
base: devel
Choose a base branch
from

Commits on Nov 8, 2024

  1. Add support for statvfs() to FUSE

    Some desktop environments are now checking for free space before
    copying files to a destination.
    
    To support this, the FUSE filesystem needs to convert the statvfs()
    system call to the relevent PDUs from [MS-RDPEFS]
    matt335672 committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    5dc4fdb View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. Add fix for chromium saving files to FUSE filesys

    Chromium 130 won't save to our filesystem if we don't return a
    max filename length.
    
    Dummy parameters were tried for inode counts, but these do not seem to
    be necessary. Not also that btrfs foes not return values for these
    fields.
    matt335672 committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    6a49ff9 View commit details
    Browse the repository at this point in the history