Project

General

Profile

Bug #64679

Updated by Xiubo Li 2 months ago

This issue is from https://github.com/ceph/ceph/pull/55087. 

 The POSIX says we should return -ENODATA when the corresponding 
 attribute doesn't exist when removing it. While there is one 
 exception for the acl ones in the local filesystems, for exmaple 
 for xfs, which will treat it as success. 
    
 While in the MDS side there have two ways to remove the xattr: 
 sending a CEPH_MDS_OP_SETXATTR request by setting the 'flags' with 
 CEPH_XATTR_REMOVE and just issued a CEPH_MDS_OP_RMXATTR request 
 directly. 
    
 For the first one it will always return 0 when the corresponding 
 xattr doesn't exist, while for the later one it will return 
 -ENODATA instead, this should be fixed in MDS to make them to be 
 consistent.  
 And to make sure we won't break the existing apps we 
 will add a new CEPH_XATTR_REMOVE2 flag for the setxattr request. 

Back