Lines Matching refs:ckey
299 struct ceph_crypto_key *ckey;
309 ckey = kmalloc(sizeof(*ckey), GFP_KERNEL);
310 if (!ckey)
315 ret = ceph_crypto_key_decode(ckey, &p, (char*)prep->data+datalen);
319 prep->payload.data[0] = ckey;
324 kfree(ckey);
331 struct ceph_crypto_key *ckey = prep->payload.data[0];
332 ceph_crypto_key_destroy(ckey);
333 kfree(ckey);
338 struct ceph_crypto_key *ckey = key->payload.data[0];
340 ceph_crypto_key_destroy(ckey);
341 kfree(ckey);