https://bugzilla.samba.org/show_bug.cgi?id=6590
--- Comment #12 from Roman Dubtsov <dubt...@gmail.com> --- Hi, I think I've found the source of this bug. send_xattr_request() skips xattrs that are abbreviated: 552 case XSTATE_ABBREV: 553 /* Items left abbreviated matched the sender's checksum, so 554 * the receiver will cache the local data for future use. */ 555 if (am_generator) 556 rxa->datum[0] = XSTATE_DONE; 557 continue; But recv_xattrs_request() does not have a good way to detect skipped elements because it is only able to traverse the xattrs list once. I do not understand the code well enough to understand if it's reasonable to skip abbreviated xattrs, so I do not have a better solution than the one by SATOH Fumiyasu which modifies recv_xattrs_request() to loop over xattrs list multiple times. -- You are receiving this mail because: You are the QA Contact for the bug. -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html