Searched refs:con (Results 1 – 2 of 2) sorted by relevance
/fs/dlm/ |
D | lowcomms.c | 131 struct connection *con; member 155 struct connection *con = NULL; in __nodeid2con() local 159 con = idr_find(&connections_idr, nodeid); in __nodeid2con() 160 if (con || !alloc) in __nodeid2con() 161 return con; in __nodeid2con() 167 con = kmem_cache_zalloc(con_cache, alloc); in __nodeid2con() 168 if (!con) in __nodeid2con() 171 r = idr_get_new_above(&connections_idr, con, nodeid, &n); in __nodeid2con() 173 kmem_cache_free(con_cache, con); in __nodeid2con() 179 kmem_cache_free(con_cache, con); in __nodeid2con() [all …]
|
/fs/cifs/ |
D | asn1.c | 143 unsigned int *cls, unsigned int *con, unsigned int *tag) in asn1_id_decode() argument 151 *con = (ch & 0x20) >> 5; in asn1_id_decode() 200 unsigned int *cls, unsigned int *con, unsigned int *tag) in asn1_header_decode() argument 205 if (!asn1_id_decode(ctx, cls, con, tag)) in asn1_header_decode() 212 if (*con == ASN1_PRI && !def) in asn1_header_decode() 476 unsigned int cls, con, tag, oidlen, rc; in decode_negTokenInit() local 488 if (asn1_header_decode(&ctx, &end, &cls, &con, &tag) == 0) { in decode_negTokenInit() 491 } else if ((cls != ASN1_APL) || (con != ASN1_CON) in decode_negTokenInit() 493 cFYI(1, ("cls = %d con = %d tag = %d", cls, con, tag)); in decode_negTokenInit() 498 rc = asn1_header_decode(&ctx, &end, &cls, &con, &tag); in decode_negTokenInit() [all …]
|