Please run the attached DTrace script and then copy
only *one* file with the problem so the output is
manageable.
Thanks,
Afshin
Afshin Salek wrote:
Hi Jay,
We have a release and everybody's been very busy.
I need to find some time and provide you with a DTrace
script to see if we can find the problem.
Afshin
Jay Anderson wrote:
Anything new on this? Is there anything I can provide to help come up with a
solution? Migration of data will be difficult if Robocopy can't copy ACLs along
with the files and directories.
Thank you.
--
This message posted from opensolaris.org
_______________________________________________
cifs-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/cifs-discuss
_______________________________________________
cifs-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/cifs-discuss
#!/usr/sbin/dtrace -s
#pragma D option flowindent
smb_sd_write:entry
{
sr = (smb_request_t *)arg0;
printf("filename=%s, secinfo=%x\n",
stringof(sr->fid_ofile->f_node->od_name), arg2);
}
kidmap_batch_getuidbysid:entry,
kidmap_batch_getgidbysid:entry,
kidmap_batch_getpidbysid:entry,
kidmap_getuidbysid:entry,
kidmap_getgidbysid:entry,
kidmap_getpidbysid:entry
{
printf("%s-%d\n", stringof(arg1), arg2);
}
smb_fsop_sdwrite:entry
{
node = (smb_node_t *)arg2;
printf("filename=%s\n", stringof(node->od_name));
}
fop_setsecattr:entry,
smb_vop_acl_write:entry,
smb_fsop_sdmerge:entry,
smb_fsop_setattr:entry,
smb_fsop_aclwrite:entry,
smb_idmap_batch_getmappings:entry,
smb_idmap_batch_binsid:entry,
smb_idmap_getid:entry,
smb_sd_tofs:entry
{
}
smb_acl_to_zfs:entry
{
printf("flags=%x, which_acl=%x\n", arg1, arg2);
}
fop_setsecattr:return,
smb_vop_acl_write:return,
smb_fsop_sdwrite:return,
smb_fsop_sdmerge:return,
smb_fsop_setattr:return,
smb_fsop_aclwrite:return,
smb_idmap_*:return,
smb_acl_to_zfs:return,
kidmap_batch_getuidbysid:return,
kidmap_batch_getgidbysid:return,
kidmap_batch_getpidbysid:return,
kidmap_getuidbysid:return,
kidmap_getgidbysid:return,
kidmap_getpidbysid:return,
smb_sd_tofs:return,
smb_sd_write:return
{
printf("rc=%d\n", arg1);
}
_______________________________________________
cifs-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/cifs-discuss