Lines Matching defs:new

1021 	 * var for the rest of the loop to avoid a new stack var.
2023 /* Now build new password string */
2168 /* If interface changes in mount.cifs bump to new ver */
2724 * A new IPC connection is made and stored in the session
3090 /* new SMB session uses our server ref */
3245 * a) a new tcon already allocated with refcount=1 (1 mount point) and
3246 * its session refcount incremented (1 new tcon). This +1 was
3250 * identical ses refcount (no new tcon). Because of (1) we need to
3449 struct cifs_sb_info *new = mnt_data->cifs_sb;
3451 unsigned int newflags = new->mnt_cifs_flags & CIFS_MOUNT_MASK;
3466 if (new->wsize && new->wsize < old->wsize)
3469 if (new->rsize && new->rsize < old->rsize)
3472 if (!uid_eq(old->mnt_uid, new->mnt_uid) || !gid_eq(old->mnt_gid, new->mnt_gid))
3475 if (old->mnt_file_mode != new->mnt_file_mode ||
3476 old->mnt_dir_mode != new->mnt_dir_mode)
3479 if (strcmp(old->local_nls->charset, new->local_nls->charset))
3482 if (old->actimeo != new->actimeo)
3492 struct cifs_sb_info *new = mnt_data->cifs_sb;
3495 bool new_set = (new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
3496 new->prepath;
3498 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
3929 * new sb then client will later negotiate it downward if needed.
4128 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
4351 * mount_{get,put} functions to test connection against new DFS
4359 * We were able to connect to new target server.
4360 * Update current volume info with new target server.
4714 /* Connect to new DFS target only if we were redirected */
4728 /* Make sure that requests go through new root servers */
5196 struct rb_node **new = &(root->rb_node), *parent = NULL;
5199 while (*new) {
5200 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
5201 parent = *new;
5204 new = &((*new)->rb_left);
5206 new = &((*new)->rb_right);
5209 rb_link_node(&new_tlink->tl_rbnode, parent, new);
5226 * If one doesn't exist then insert a new tcon_link struct into the tree and
5227 * try to construct a new one.