Git Product home page Git Product logo

winfuse's Introduction

WinFuse · FUSE for the Windows kernel

Download


WinFuse is a suite of software components that allows FUSE file systems to run on Windows. Both Windows and Linux (WSL1) FUSE file systems are supported. Windows FUSE file systems are supported via a kernel driver that exposes the FUSE protocol via DeviceIoControl and a port of the libfuse library compiled as a Windows DLL. Linux FUSE file systems are expected to run in the WSL1 environment and are supported via a kernel driver that exposes /dev/fuse.

ARCHITECTURE

Structural Diagram

The following component diagram shows the WinFuse project components and their relations to the Windows OS (NTOS), WSL (LXCORE) and components that are provided by other projects.

Component Diagram

The components and their interfaces are:

  • The winfsp component which is provided by the WinFsp project.
    • The component is an NTOS File System Driver (FSD).
    • The component provides an FSP_FSCTL_TRANSACT DeviceIoControl interface.
    • The component is responsible for loading the winfuse component.
  • The winfuse component which is provided by the WinFuse project (this project).
    • The component is an NTOS driver.
    • The component provides an FUSE_FSCTL_TRANSACT DeviceIoControl interface.
    • The component connects to the FSP_FSCTL_TRANSACT interface. WinFsp file system requests retrieved via this interface are translated to FUSE file system requests and become available via FUSE_FSCTL_TRANSACT.
  • The wslfuse component which is provided by the WinFuse project (this project).
    • The component is an LXCORE driver.
    • The component provides a /dev/fuse Linux interface.
    • The component connects to the FSP_FSCTL_TRANSACT interface. WinFsp file system requests retrieved via this interface are translated to FUSE file system requests and become available via /dev/fuse.
  • The lxldr component which is provided by the LxDK project.
    • The component is an LXCORE driver.
    • The component is responsible for loading the wslfuse component.
  • The file system (FS) components which are user-mode programs provided by third parties.
    • A Windows WinFsp file system connects to the FSP_FSCTL_TRANSACT interface.
    • A Windows FUSE file system connects to the FUSE_FSCTL_TRANSACT interface.
    • A Linux FUSE file system connects to the /dev/fuse interface.

Behavioral Diagrams

The following sequence diagrams show how the WinFuse project components interact with other components in two scenarios: (1) I/O handled by a Windows FUSE file system, and (2) I/O handled by a Linux FUSE file system.

I/O handled by a Windows FUSE file system:

Windows FS Sequence Diagram

  • The I/O originates with one of:
    • A Windows process which uses a familiar API like ReadFile or WriteFile.
    • A WSL (Linux) process which uses an API like read(2) or write(2) that LXCORE translates into the equivalent NtReadFile or NtWriteFile.
  • The Windows OS (NTOS) packages this I/O into an IRP (I/O Request Packet) and routes it to the winfsp FSD.
  • The winfsp FSD posts the request into an internal I/O queue. This request is retrieved at a later time and in a different process context via an FSP_FSCTL_TRANSACT (issued via DeviceIoControl) by the winfuse driver.
  • The winfuse driver translates the request to equivalent FUSE requests, which are then retrieved via an FUSE_FSCTL_TRANSACT (issued via DeviceIoControl) by the Windows FUSE file system.
  • The Windows FUSE file system processes the request and prepares a response, which it sends to the winfuse driver via another FUSE_FSCTL_TRANSACT.
  • The winfuse driver processes the FUSE response and it may issue additional FUSE requests or it may translate it to a final WinFsp response, which it sends to the winfsp FSD via another FSP_FSCTL_TRANSACT.
  • The winfsp FSD completes the corresponding I/O, which allows the Originating Process to resume and retrieve the response.

I/O handled by a Linux FUSE file system:

Linux FS Sequence Diagram

This case is similar to the previous case except that the winfuse driver is replaced by the wslfuse driver that exposes the FUSE protocol via the /dev/fuse interface that the Linux FUSE file system understands.

winfuse's People

Contributors

billziss-gh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

winfuse's Issues

"Unknown option" error with WinFUSE

I'm trying to port the pyfuse3 library to Windows using WinFUSE (it can't use WinFSP because it needs the lowlevel API), but upon running the testsuite I get this error from the fuse library:

fuse: unknown option(s): `-o fsname=pyfuse3_testfs,default_permissions'

I'm not sure why this is failing because the options look valid to me, and they work on Linux.

How to use

Hi! Sorry if it's a weird question but I'm not fully understand what's the idea of this project and how to install it. I saw your comments on a WSL1 thread and decided to check tools that you've built (great work btw!).

I've never worked or used FUSE before and correct me if I'm wrong, but as I understand this project will allow me to mount external file systems that will be visible both to windows and WSL1? WSL1 have a terrible file system performance and as I understand this tool is supposed to fix it by mounting a different drive with different FS?

Thanks!

fusermount does not work if stdout is pipe / various other issues

https://github.com/bazil/zipfs

Error message:

USER@DESKTOP:~/zipfs$ ./zipfs hello.zip tmp
(main.go `fuse.Mount()` does not return)

USER@DESKTOP:~/zipfs$ sudo ./zipfs hello.zip tmp
zipfs: mount helper error: fusermount: winmount: no output
zipfs: fusermount: exit status 1
USER@DESKTOP:~$ ls -l /usr/bin/fuser*
-rwsr-xr-x 1 root root 34040 Apr  2 16:33 /usr/bin/fusermount
-rwxr-xr-x 1 root root 30800 Jan 11  2017 /usr/bin/fusermount-glusterfs
-rwxr-xr-x 1 root root  5632 Apr  2 17:02 /usr/bin/fusermount-helper.exe

I don't have the issue on a Debian machine.

cannot run sshfs under root / inside ssh session to localhost

Error message:

USER@DESKTOP:~$ ssh host pwd
/home/USER
USER@DESKTOP:~$ sshfs host:Desktop tmp
(success)

root@DESKTOP:/home/USER# ssh host pwd
/home/USER
root@DESKTOP:/home/USER# sshfs host:Desktop tmp
fuse: mount failed: No such device
USER@DESKTOP:~$ ls -l /usr/bin/fuser*
-rwsr-xr-x 1 root root 34040 Apr  2 16:33 /usr/bin/fusermount
-rwxr-xr-x 1 root root 30800 Jan 11  2017 /usr/bin/fusermount-glusterfs
-rwxr-xr-x 1 root root  5632 Apr  2 17:02 /usr/bin/fusermount-helper.exe

I don't have such error on a Debian machine.

fusermount: mounting over filesystem type 0x53464846 is forbidden

Previous issue resolved, updated to 20.04 LTS, now getting above issue
ran sudo sh "/mnt/c/Program Files/WinFuse/opt/wslfuse/uninstall.sh", shutdown wsl from powershell, restarted wsl, ran sudo sh "/mnt/c/Program Files/WinFuse/opt/wslfuse/install.sh"

[01:44:57]:~> michael@Rocket$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 20.04.1 LTS
Release:        20.04
Codename:       focal
[01:45:02]:~> michael@Rocket$ sudo sh "/mnt/c/Program Files/WinFuse/opt/wslfuse/install.sh"
FUSE for WSL1 user space components installed
[01:45:10]:~> michael@Rocket$ ls -l /dev/fuse
crw-rw-rw- 1 root root 10, 229 Oct 24 13:45 /dev/fuse
[01:45:28]:~> michael@Rocket$ ls -l /usr/bin/fusermount*
-rwsr-xr-x 1 root root 34040 Oct 24 13:45 /usr/bin/fusermount
-rwsr-xr-x 1 root root 34040 Oct 24 13:45 /usr/bin/fusermount3
-rwxr-xr-x 1 root root  5632 Oct 24 13:45 /usr/bin/fusermount-helper.exe
[01:45:33]:~> michael@Rocket$ sshfs -d -o umask=000 USER@HOST: mnt
fusermount: mounting over filesystem type 0x53464846 is forbidden

fusermount: mount failed: No such device

Installed all prerequisites, rebooted Windows, launched wsl1 (Ubuntu 18.04.4 LTS on Windows 10 20H1 build 19041.572), ran sudo sh '/mnt/c/Program Files/WinFuse/opt/wslfuse/install.sh', no errors.

/dev/fuse confirmed to be created.

Ran sshfs -d -o umask=000 USER@HOST: mnt, replacing USER and HOST with applicable values, sshfs returns error in issue title

GlusterFS Mount

One Feature of WSL that would be fantastic is that GlusterFS can mount a partition using a Linux Fuse client, that doesn't exist on Windows.

It uses /dev/fuse to establish the mount.

[2020-03-16 19:33:37.035414] E [mount.c:469:gf_fuse_mount] 0-glusterfs-fuse: cannot open /dev/fuse (No such file or directory)
[2020-03-16 19:33:37.035510] E [MSGID: 101019] [xlator.c:629:xlator_init] 0-fuse: Initialization of volume 'fuse' failed, review your volfile again````

cannot create new file in mounted file system

I mount a remote file system to my local machine using sshfs -o umask=000 in WSL1.

I am able to read and edit remote files (using vi), but when I tries to create or delete a file, some errors occur:

$ touch 1.txt
touch: cannot touch '1.txt': No such file or directory
$ mv 0.txt 1.txt
mv: cannot move 'manual1.sh' to 'manual.sh': Permission denied
$ echo hello world > 1.txt
-bash: 1.txt: No such file or directory
$ rm 0.txt
rm: cannot remove '0.txt': Permission denied

It doesn't happen in sshfs mounted file system in WSL2.

Here is what I see in the sshfs -d debug output after executing vi 0.txt in the mounted directory:

WSL1 console output
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102832, opcode: LOOKUP (1), nodeid: 1, insize: 54, pid: 9504
LOOKUP /libm.so.6
getattr /libm.so.6
   unique: 18446707283581102832, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102832, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581102832, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102832, opcode: LOOKUP (1), nodeid: 1, insize: 58, pid: 9504
LOOKUP /libtinfo.so.6
getattr /libtinfo.so.6
   unique: 18446707283581102832, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581115232, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581115232, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100848, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581100848, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 60, pid: 9504
LOOKUP /libselinux.so.1
getattr /libselinux.so.1
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581115232, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581115232, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102336, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581102336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 61, pid: 9504
LOOKUP /libcanberra.so.0
getattr /libcanberra.so.0
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581110272, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581110272, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113744, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113744, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581115232, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581115232, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581110272, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581110272, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 9504
LOOKUP /libacl.so.1
getattr /libacl.so.1
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581110272, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581110272, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581115232, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581115232, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102832, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581102832, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102336, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 9504
LOOKUP /libgpm.so.2
getattr /libgpm.so.2
   unique: 18446707283581102336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102336, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581102336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581115232, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581115232, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 55, pid: 9504
LOOKUP /libdl.so.2
getattr /libdl.so.2
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102336, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581102336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102336, opcode: LOOKUP (1), nodeid: 1, insize: 64, pid: 9504
LOOKUP /libpython3.8.so.1.0
getattr /libpython3.8.so.1.0
   unique: 18446707283581102336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581115232, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581115232, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581107296, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581107296, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113744, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581113744, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 60, pid: 9504
LOOKUP /libpthread.so.0
getattr /libpthread.so.0
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100848, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100848, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 54, pid: 9504
LOOKUP /libc.so.6
getattr /libc.so.6
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581103328, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581103328, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113744, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581113744, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581115232, opcode: LOOKUP (1), nodeid: 1, insize: 60, pid: 9504
LOOKUP /libpcre2-8.so.0
getattr /libpcre2-8.so.0
   unique: 18446707283581115232, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102832, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581102832, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102336, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581102336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113744, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581113744, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581102336, opcode: LOOKUP (1), nodeid: 1, insize: 63, pid: 9504
LOOKUP /libvorbisfile.so.3
getattr /libvorbisfile.so.3
   unique: 18446707283581102336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581115232, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581115232, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581106800, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581106800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 9504
LOOKUP /libtdb.so.1
getattr /libtdb.so.1
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113744, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581113744, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581115232, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581115232, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 57, pid: 9504
LOOKUP /libltdl.so.7
getattr /libltdl.so.7
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581115232, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581115232, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581101840, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581101840, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581109280, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283581109280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581113248, opcode: LOOKUP (1), nodeid: 1, insize: 58, pid: 9504
LOOKUP /libexpat.so.1
getattr /libexpat.so.1
   unique: 18446707283581113248, error: -2 (No such file or directory), outsize: 16
unique: 18446707283581100352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283581100352, error: -2 (No such file or directory), outsize: 16
unique: 18446707282844207488, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707282844207488, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088148736, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088148736, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088134352, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283088134352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088144768, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283088144768, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088144768, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283088144768, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088135344, opcode: LOOKUP (1), nodeid: 1, insize: 54, pid: 9504
LOOKUP /libz.so.1
getattr /libz.so.1
   unique: 18446707283088135344, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088136336, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088136336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088136336, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088136336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088139312, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088139312, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088140800, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088140800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088139312, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283088139312, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088135344, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283088135344, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088139312, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283088139312, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088139312, opcode: LOOKUP (1), nodeid: 1, insize: 57, pid: 9504
LOOKUP /libutil.so.1
getattr /libutil.so.1
   unique: 18446707283088139312, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088144768, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088144768, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088143280, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088143280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088148736, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088148736, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283088148736, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088143280, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283088143280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088144768, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283088144768, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: LOOKUP (1), nodeid: 1, insize: 59, pid: 9504
LOOKUP /libvorbis.so.0
getattr /libvorbis.so.0
   unique: 18446707283088148736, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088140304, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088140304, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088134352, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088134352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088148736, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088136336, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088136336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283088148736, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283088148736, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088143280, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283088143280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088140800, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 9504
LOOKUP /libogg.so.0
getattr /libogg.so.0
   unique: 18446707283088140800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088143280, opcode: LOOKUP (1), nodeid: 1, insize: 55, pid: 9504
LOOKUP /0.txt
getattr /0.txt
   NODEID: 63
   unique: 18446707283088143280, success, outsize: 144
unique: 18446707283088143280, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   open[140264169553584] flags: 0x0 /0.txt
   unique: 18446707283088143280, success, outsize: 32
unique: 18446707283088141792, opcode: GETATTR (3), nodeid: 63, insize: 56, pid: 0
fgetattr[140264169553584] /0.txt
   unique: 18446707283088141792, success, outsize: 120
unique: 18446707283088143280, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140264169553584] flags: 0x0
   unique: 18446707283088143280, success, outsize: 16
unique: 18446707283088139312, opcode: GETATTR (3), nodeid: 1, insize: 56, pid: 9504
getattr /
   unique: 18446707283088139312, success, outsize: 120
unique: 18446707283088139312, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088139312, success, outsize: 32
unique: 18446707283088148736, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088148736, success, outsize: 16
unique: 18446707283088134352, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088134352, success, outsize: 32
unique: 18446707283088148736, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088148736, success, outsize: 16
unique: 18446707283088148736, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088139312, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088139312, success, outsize: 16
unique: 18446707283088136336, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088136336, success, outsize: 32
unique: 18446707283088144768, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088144768, success, outsize: 16
unique: 18446707283088148736, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088148736, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088148736, success, outsize: 16
unique: 18446707283088148736, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088135344, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088135344, success, outsize: 16
unique: 18446707283088148736, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088143280, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088143280, success, outsize: 16
unique: 18446707283088134352, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088134352, success, outsize: 32
unique: 18446707283088135344, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088135344, success, outsize: 16
unique: 18446707283088136336, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088136336, success, outsize: 32
unique: 18446707283088148736, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088148736, success, outsize: 16
unique: 18446707283088136832, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088136832, success, outsize: 32
unique: 18446707283088148736, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088148736, success, outsize: 16
unique: 18446707283088139312, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088139312, success, outsize: 32
unique: 18446707283088134352, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088134352, success, outsize: 16
unique: 18446707283088143280, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088143280, success, outsize: 32
unique: 18446707283088143280, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088143280, success, outsize: 16
unique: 18446707283088148736, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088136832, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088136832, success, outsize: 16
unique: 18446707283088140304, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088140304, success, outsize: 32
unique: 18446707283088148736, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088148736, success, outsize: 16
unique: 18446707283088148736, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088141792, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088141792, success, outsize: 16
unique: 18446707283088148736, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088134352, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088134352, success, outsize: 16
unique: 18446707283088135344, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088135344, success, outsize: 32
unique: 18446707283088143280, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088143280, success, outsize: 16
unique: 18446707283088134352, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088134352, success, outsize: 32
unique: 18446707283088139312, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088139312, success, outsize: 16
unique: 18446707283088140304, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088140304, success, outsize: 32
unique: 18446707283088140800, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088140800, success, outsize: 16
unique: 18446707283088139312, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088139312, success, outsize: 32
unique: 18446707283088139312, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088139312, success, outsize: 16
unique: 18446707283088148736, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088143280, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088143280, success, outsize: 16
unique: 18446707283088141792, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088141792, success, outsize: 32
unique: 18446707283088136832, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088136832, success, outsize: 16
unique: 18446707283088143280, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088143280, success, outsize: 32
unique: 18446707283088141296, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088141296, success, outsize: 16
unique: 18446707283088139312, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088139312, success, outsize: 32
unique: 18446707283088139312, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088139312, success, outsize: 16
unique: 18446707283088140304, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088140304, success, outsize: 32
unique: 18446707283088143280, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088143280, success, outsize: 16
unique: 18446707283088140304, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088140304, success, outsize: 32
unique: 18446707283088136336, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088136336, success, outsize: 16
unique: 18446707283088143280, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088143280, success, outsize: 32
unique: 18446707283088139312, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088139312, success, outsize: 16
unique: 18446707283088148736, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088148736, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088148736, success, outsize: 16
unique: 18446707283088143280, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088143280, success, outsize: 32
unique: 18446707283088140304, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088140304, success, outsize: 16
unique: 18446707283088148736, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   open[140264169556000] flags: 0x0 /0.txt
fgetattr[140264169556000] /0.txt
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088148736, opcode: GETATTR (3), nodeid: 63, insize: 56, pid: 0
fgetattr[140264169556000] /0.txt
   unique: 18446707283088148736, success, outsize: 120
unique: 18446707283088148736, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140264169556000] flags: 0x0
   unique: 18446707283088148736, success, outsize: 16
unique: 18446707283088144768, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088144768, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088136832, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088136832, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088139312, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088139312, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: LOOKUP (1), nodeid: 1, insize: 48, pid: 9504
LOOKUP /tls
getattr /tls
   unique: 18446707283088148736, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088136336, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283088136336, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088139312, opcode: LOOKUP (1), nodeid: 1, insize: 52, pid: 9504
LOOKUP /haswell
getattr /haswell
   unique: 18446707283088139312, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088143280, opcode: LOOKUP (1), nodeid: 1, insize: 51, pid: 9504
LOOKUP /x86_64
getattr /x86_64
   unique: 18446707283088143280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088143280, opcode: LOOKUP (1), nodeid: 1, insize: 62, pid: 9504
LOOKUP /libnss_files.so.2
getattr /libnss_files.so.2
   unique: 18446707283088143280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   open[140263968217968] flags: 0x0 /0.txt
fgetattr[140263968217968] /0.txt
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088140304, opcode: GETATTR (3), nodeid: 63, insize: 56, pid: 0
fgetattr[140263968217968] /0.txt
   unique: 18446707283088140304, success, outsize: 120
unique: 18446707283088144768, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140263968217968] flags: 0x0
unique: 18446707283088135344, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   unique: 18446707283088144768, success, outsize: 16
   open[140264169556000] flags: 0x0 /0.txt
fgetattr[140264169556000] /0.txt
   unique: 18446707283088135344, success, outsize: 32
unique: 18446707283088143280, opcode: GETATTR (3), nodeid: 63, insize: 56, pid: 0
fgetattr[140264169556000] /0.txt
   unique: 18446707283088143280, success, outsize: 120
unique: 18446707283088144768, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140264169556000] flags: 0x0
unique: 18446707283088139312, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   unique: 18446707283088144768, success, outsize: 16
   open[140263968217712] flags: 0x0 /0.txt
fgetattr[140263968217712] /0.txt
   unique: 18446707283088139312, success, outsize: 32
unique: 18446707283088136336, opcode: GETATTR (3), nodeid: 63, insize: 56, pid: 0
fgetattr[140263968217712] /0.txt
   unique: 18446707283088136336, success, outsize: 120
unique: 18446707283088139312, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140263968217712] flags: 0x0
   unique: 18446707283088139312, success, outsize: 16
unique: 18446707283088148736, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   open[140264236654096] flags: 0x0 /0.txt
fgetattr[140264236654096] /0.txt
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088144768, opcode: GETATTR (3), nodeid: 63, insize: 56, pid: 0
fgetattr[140264236654096] /0.txt
   unique: 18446707283088144768, success, outsize: 120
unique: 18446707283088144768, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140264236654096] flags: 0x0
   unique: 18446707283088144768, success, outsize: 16
unique: 18446707283088143280, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   open[140263968217968] flags: 0x0 /0.txt
fgetattr[140263968217968] /0.txt
   unique: 18446707283088143280, success, outsize: 32
unique: 18446707283088139312, opcode: GETATTR (3), nodeid: 63, insize: 56, pid: 0
fgetattr[140263968217968] /0.txt
   unique: 18446707283088139312, success, outsize: 120
unique: 18446707283088148736, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   open[140263968226096] flags: 0x0 /0.txt
fgetattr[140263968226096] /0.txt
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088143280, opcode: LOOKUP (1), nodeid: 1, insize: 60, pid: 9504
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 18446707283088143280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088140800, opcode: LOOKUP (1), nodeid: 1, insize: 60, pid: 9504
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 18446707283088140800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088140800, opcode: CREATE (35), nodeid: 1, insize: 72, pid: 9504
create flags: 0x502 /.0.txt.swp 0777 umask=0000
   unique: 18446707283088140800, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088143280, opcode: LOOKUP (1), nodeid: 1, insize: 60, pid: 9504
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 18446707283088143280, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088144768, opcode: LOOKUP (1), nodeid: 1, insize: 60, pid: 9504
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 18446707283088144768, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088134352, opcode: LOOKUP (1), nodeid: 1, insize: 60, pid: 9504
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 18446707283088134352, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088135344, opcode: LOOKUP (1), nodeid: 1, insize: 60, pid: 9504
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 18446707283088135344, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088135344, opcode: CREATE (35), nodeid: 1, insize: 72, pid: 9504
create flags: 0x502 /.0.txt.swp 0777 umask=0000
   unique: 18446707283088135344, error: -2 (No such file or directory), outsize: 16
unique: 18446707283088148736, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140263968226096] flags: 0x0
   unique: 18446707283088148736, success, outsize: 16
unique: 18446707283088144768, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140263968217968] flags: 0x0
unique: 18446707283088134352, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   unique: 18446707283088144768, success, outsize: 16
   open[140264169556000] flags: 0x0 /0.txt
fgetattr[140264169556000] /0.txt
   unique: 18446707283088134352, success, outsize: 32
unique: 18446707283088148736, opcode: GETATTR (3), nodeid: 63, insize: 56, pid: 0
fgetattr[140264169556000] /0.txt
   unique: 18446707283088148736, success, outsize: 120
unique: 18446707283088139312, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   open[140264169556144] flags: 0x0 /0.txt
fgetattr[140264169556144] /0.txt
   unique: 18446707283088139312, success, outsize: 32
unique: 18446707283088139312, opcode: READ (15), nodeid: 63, insize: 80, pid: 0
read[140264169556144] 8192 bytes from 0 flags: 0x0
   read[140264169556144] 1202 bytes from 0
   unique: 18446707283088139312, success, outsize: 1218
unique: 18446707283088134352, opcode: READ (15), nodeid: 63, insize: 80, pid: 0
read[140264169556144] 65536 bytes from 1202 flags: 0x0
   read[140264169556144] 0 bytes from 1202
   unique: 18446707283088134352, success, outsize: 16
unique: 18446707283088148736, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140264169556144] flags: 0x0
unique: 18446707283088141296, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140264169556000] flags: 0x0
   unique: 18446707283088141296, success, outsize: 16
unique: 18446707283088140800, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088140800, success, outsize: 32
   unique: 18446707283088148736, success, outsize: 16
unique: 18446707283088134352, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088134352, success, outsize: 16
unique: 18446707283088148736, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283088148736, success, outsize: 32
unique: 18446707283088136832, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283088136832, success, outsize: 16
unique: 18446707283456267808, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283456267808, success, outsize: 32
unique: 18446707283456258384, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283456258384, success, outsize: 16
unique: 18446707283456260864, opcode: OPENDIR (27), nodeid: 1, insize: 48, pid: 9504
   unique: 18446707283456260864, success, outsize: 32
unique: 18446707283456258384, opcode: RELEASEDIR (29), nodeid: 1, insize: 64, pid: 0
   unique: 18446707283456258384, success, outsize: 16
unique: 18446707283456269792, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   open[140263968217968] flags: 0x0 /0.txt
fgetattr[140263968217968] /0.txt
   unique: 18446707283456269792, success, outsize: 32
unique: 18446707283584111664, opcode: GETATTR (3), nodeid: 63, insize: 56, pid: 0
fgetattr[140263968217968] /0.txt
   unique: 18446707283584111664, success, outsize: 120
unique: 18446707283584118112, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140263968217968] flags: 0x0
   unique: 18446707283584118112, success, outsize: 16
unique: 18446707283584107200, opcode: LOOKUP (1), nodeid: 1, insize: 55, pid: 9504
LOOKUP /0.txt
getattr /0.txt
   NODEID: 63
   unique: 18446707283584107200, success, outsize: 144
unique: 18446707283584107200, opcode: OPEN (14), nodeid: 63, insize: 48, pid: 9504
open flags: 0x0 /0.txt
   open[140264169556416] flags: 0x0 /0.txt
fgetattr[140264169556416] /0.txt
   unique: 18446707283584107200, success, outsize: 32
unique: 18446707283584115632, opcode: GETATTR (3), nodeid: 63, insize: 56, pid: 0
fgetattr[140264169556416] /0.txt
   unique: 18446707283584115632, success, outsize: 120
unique: 18446707283584107200, opcode: RELEASE (18), nodeid: 63, insize: 64, pid: 0
release[140264169556416] flags: 0x0
   unique: 18446707283584107200, success, outsize: 16
unique: 18446707283584105216, opcode: FORGET (2), nodeid: 63, insize: 48, pid: 0
FORGET 63/1
unique: 18446707283584107696, opcode: FORGET (2), nodeid: 63, insize: 48, pid: 0
FORGET 63/1
DELETE: 63
...

As you can see, it tries to lookup something like tls, haswell, x86_64, libpthread.so.0 in the mounted directory, which doesn't happen in WSL2:

WSL2 console output
LOOKUP /0.txt
getattr /0.txt
   NODEID: 5
   unique: 84, success, outsize: 144
unique: 86, opcode: ACCESS (34), nodeid: 5, insize: 48, pid: 263
access /0.txt 02
   unique: 86, success, outsize: 16
unique: 88, opcode: OPEN (14), nodeid: 5, insize: 48, pid: 263
open flags: 0x8000 /0.txt
   open[140510257748064] flags: 0x8000 /0.txt
   unique: 88, success, outsize: 32
unique: 90, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 263
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 90, error: -2 (No such file or directory), outsize: 16
unique: 92, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 263
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 92, error: -2 (No such file or directory), outsize: 16
unique: 94, opcode: CREATE (35), nodeid: 1, insize: 72, pid: 263
create flags: 0x80c2 /.0.txt.swp 0100600 umask=0022
   create[140510257749248] flags: 0x80c2 /.0.txt.swp
fgetattr[140510257749248] /.0.txt.swp
   NODEID: 6
   unique: 94, success, outsize: 160
unique: 96, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 263
LOOKUP /.0.txt.swx
getattr /.0.txt.swx
   unique: 96, error: -2 (No such file or directory), outsize: 16
unique: 98, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 263
LOOKUP /.0.txt.swx
getattr /.0.txt.swx
   unique: 98, error: -2 (No such file or directory), outsize: 16
unique: 100, opcode: CREATE (35), nodeid: 1, insize: 72, pid: 263
create flags: 0x80c2 /.0.txt.swx 0100600 umask=0022
   create[140510257749808] flags: 0x80c2 /.0.txt.swx
fgetattr[140510257749808] /.0.txt.swx
   NODEID: 7
   unique: 100, success, outsize: 160
unique: 102, opcode: FLUSH (25), nodeid: 7, insize: 64, pid: 263
flush[140510257749808]
   unique: 102, success, outsize: 16
unique: 104, opcode: RELEASE (18), nodeid: 7, insize: 64, pid: 0
release[140510257749808] flags: 0x8002
   unique: 104, success, outsize: 16
unique: 106, opcode: UNLINK (10), nodeid: 1, insize: 56, pid: 263
unlink /.0.txt.swx
   unique: 106, success, outsize: 16
unique: 108, opcode: FLUSH (25), nodeid: 6, insize: 64, pid: 263
flush[140510257749248]
   unique: 108, success, outsize: 16
unique: 112, opcode: RELEASE (18), nodeid: 6, insize: 64, pid: 0
unique: 110, opcode: FORGET (2), nodeid: 7, insize: 48, pid: 0
FORGET 7/1
DELETE: 7
unique: 114, opcode: UNLINK (10), nodeid: 1, insize: 56, pid: 263
QUEUE PATH 6 (w)
release[140510257749248] flags: 0x8002
   unique: 112, success, outsize: 16
DEQUEUE PATH 6 (w)
unlink /.0.txt.swp
   unique: 114, success, outsize: 16
unique: 116, opcode: FORGET (2), nodeid: 6, insize: 48, pid: 0
FORGET 6/1
DELETE: 6
unique: 118, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 263
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 118, error: -2 (No such file or directory), outsize: 16
unique: 120, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 263
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 120, error: -2 (No such file or directory), outsize: 16
unique: 122, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 263
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 122, error: -2 (No such file or directory), outsize: 16
unique: 124, opcode: LOOKUP (1), nodeid: 1, insize: 56, pid: 263
LOOKUP /.0.txt.swp
getattr /.0.txt.swp
   unique: 124, error: -2 (No such file or directory), outsize: 16
unique: 126, opcode: CREATE (35), nodeid: 1, insize: 72, pid: 263
create flags: 0x280c2 /.0.txt.swp 0100600 umask=0022
   create[140510324856096] flags: 0x280c2 /.0.txt.swp
fgetattr[140510324856096] /.0.txt.swp
   NODEID: 8
   unique: 126, success, outsize: 160
unique: 128, opcode: WRITE (16), nodeid: 8, insize: 4176, pid: 263
write[140510324856096] 4096 bytes to 0 flags: 0x28002
   write[140510324856096] 4096 bytes to 0
   unique: 128, success, outsize: 24
unique: 130, opcode: SETATTR (4), nodeid: 8, insize: 128, pid: 263
getattr /.0.txt.swp
   unique: 130, success, outsize: 120
unique: 132, opcode: FLUSH (25), nodeid: 5, insize: 64, pid: 263
flush[140510257748064]
   unique: 132, success, outsize: 16
unique: 134, opcode: RELEASE (18), nodeid: 5, insize: 64, pid: 0
release[140510257748064] flags: 0x8000
   unique: 134, success, outsize: 16
unique: 136, opcode: OPEN (14), nodeid: 5, insize: 48, pid: 263
open flags: 0x8000 /0.txt
   open[140510257749808] flags: 0x8000 /0.txt
fgetattr[140510257749808] /0.txt
   unique: 136, success, outsize: 32
unique: 138, opcode: READ (15), nodeid: 5, insize: 80, pid: 263
read[140510257749808] 4096 bytes from 0 flags: 0x8000
   read[140510257749808] 1202 bytes from 0
   unique: 138, success, outsize: 1218
unique: 140, opcode: FLUSH (25), nodeid: 5, insize: 64, pid: 263
flush[140510257749808]
   unique: 140, success, outsize: 16
unique: 142, opcode: RELEASE (18), nodeid: 5, insize: 64, pid: 0
release[140510257749808] flags: 0x8000
   unique: 142, success, outsize: 16
unique: 144, opcode: ACCESS (34), nodeid: 1, insize: 48, pid: 263
access / 01
   unique: 144, success, outsize: 16
unique: 146, opcode: GETATTR (3), nodeid: 5, insize: 56, pid: 263
getattr /0.txt
   unique: 146, success, outsize: 120
unique: 148, opcode: WRITE (16), nodeid: 8, insize: 4176, pid: 263
write[140510324856096] 4096 bytes to 4096 flags: 0x28002
   write[140510324856096] 4096 bytes to 4096
   unique: 148, success, outsize: 24
unique: 150, opcode: WRITE (16), nodeid: 8, insize: 4176, pid: 263
write[140510324856096] 4096 bytes to 8192 flags: 0x28002
   write[140510324856096] 4096 bytes to 8192
   unique: 150, success, outsize: 24

version info

WSL1 version: Linux 4.4.0-22000-Microsoft #1-Microsoft Fri Jun 04 16:28:00 PST 2021 x86_64 x86_64 x86_64 GNU/Linux
Linux distro: Ubuntu-20.04 LTS
SSHFS version 2.10.0
FUSE library version: 2.9.9
fusermount version: wslfuse
using FUSE kernel interface version 7.19

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.