Lines Matching defs:new
95 * for the new text-based upcall; dentry[0] is named after the
130 * and a new one is protected by the pipe->lock.
331 * to that upcall instead of adding the new upcall.
1080 * the new pipe first.
1175 struct gss_auth *new)
1201 if (new)
1202 hash_add(gss_auth_hash_table, &new->hash, hashval);
1203 gss_auth = new;
1214 struct gss_auth *new;
1219 new = gss_create_new(args, clnt);
1220 if (IS_ERR(new))
1221 return new;
1222 gss_auth = gss_auth_find_or_add_hashed(args, clnt, new);
1223 if (gss_auth != new)
1224 gss_destroy(&new->rpc_auth);
1252 struct gss_cred *new;
1255 new = kzalloc(sizeof(*gss_cred), GFP_KERNEL);
1256 if (new) {
1263 rpcauth_init_cred(&new->gc_base, &acred,
1266 new->gc_base.cr_flags = 1UL << RPCAUTH_CRED_UPTODATE;
1267 new->gc_service = gss_cred->gc_service;
1268 new->gc_principal = gss_cred->gc_principal;
1270 rcu_assign_pointer(new->gc_ctx, ctx);
1273 return new;
1288 struct gss_cred *new;
1291 new = gss_dup_cred(gss_auth, gss_cred);
1292 if (new) {
1296 task = rpc_call_null(gss_auth->client, &new->gc_base,
1301 put_rpccred(&new->gc_base);
1306 * to create a new cred or context, so they check that things have been
1458 * Did we find a new acceptor that's longer than the original? Allocate
1620 struct rpc_cred *new;
1622 new = gss_lookup_cred(auth, &acred, RPCAUTH_LOOKUP_NEW);
1623 if (IS_ERR(new))
1624 return PTR_ERR(new);
1626 task->tk_rqstp->rq_cred = new;
2102 gss_seq_is_newer(u32 new, u32 old)
2104 return (s32)(new - old) > 0;