propagating file change attr for setacl

This commit is contained in:
Olga Kornievskaia 2012-02-06 14:22:38 -05:00 committed by unknown
parent cdf31d3ee0
commit 13c3723191
3 changed files with 13 additions and 0 deletions

View file

@ -235,6 +235,7 @@ typedef struct _updowncall_entry {
SECURITY_INFORMATION query;
PVOID buf;
DWORD buf_len;
ULONGLONG ChangeTime;
} Acl;
} u;
@ -1821,6 +1822,9 @@ NTSTATUS nfs41_downcall(
case NFS41_EA_SET:
unmarshal_nfs41_setattr(cur, &cur->u.SetEa.ChangeTime, &buf);
break;
case NFS41_ACL_SET:
unmarshal_nfs41_setattr(cur, &cur->u.Acl.ChangeTime, &buf);
break;
}
}
DbgP("[downcall] About to signal waiting IO thread\n");