juergbi commented on issue #1660:
URL: https://github.com/apache/buildstream/issues/1660#issuecomment-1172875218

   For `EXT2_IOC_GETFLAGS` ostree has special error cases:
   ```c
     int r = ioctl (fd, EXT2_IOC_GETFLAGS, &flags);
     if (r == -1)
       {
         if (errno == EPERM)
           g_atomic_int_set (&no_alter_immutable, 1);
         else if (errno == EOPNOTSUPP || errno == ENOTTY)
           ;
         else
           return glnx_throw_errno_prefix (error, "ioctl(EXT2_IOC_GETFLAGS)");
       }
   ```
   
   I'll try to modify buildbox-fuse to return `EOPNOTSUPP` if that makes sense.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to