Lines Matching refs:args
1933 struct cifs_unix_set_info_args args = {
1941 args.uid = current_fsuid();
1943 args.gid = parent->i_gid;
1945 args.gid = current_fsgid();
1947 args.uid = INVALID_UID; /* no change */
1948 args.gid = INVALID_GID; /* no change */
1950 CIFSSMBUnixSetPathInfo(xid, tcon, full_path, &args,
2872 struct cifs_unix_set_info_args *args = NULL;
2923 args = kmalloc(sizeof(*args), GFP_KERNEL);
2924 if (args == NULL) {
2931 args->mode = attrs->ia_mode;
2933 args->mode = NO_CHANGE_64;
2936 args->uid = attrs->ia_uid;
2938 args->uid = INVALID_UID; /* no change */
2941 args->gid = attrs->ia_gid;
2943 args->gid = INVALID_GID; /* no change */
2946 args->atime = cifs_UnixTimeToNT(attrs->ia_atime);
2948 args->atime = NO_CHANGE_64;
2951 args->mtime = cifs_UnixTimeToNT(attrs->ia_mtime);
2953 args->mtime = NO_CHANGE_64;
2956 args->ctime = cifs_UnixTimeToNT(attrs->ia_ctime);
2958 args->ctime = NO_CHANGE_64;
2960 args->device = 0;
2966 rc = CIFSSMBUnixSetFileInfo(xid, pTcon, args, nfid, npid);
2975 rc = CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, args,
3002 kfree(args);