/linux-4.1.27/drivers/media/rc/ |
D | imon.c | 468 static void free_imon_context(struct imon_context *ictx) in free_imon_context() argument 470 struct device *dev = ictx->dev; in free_imon_context() 472 usb_free_urb(ictx->tx_urb); in free_imon_context() 473 usb_free_urb(ictx->rx_urb_intf0); in free_imon_context() 474 usb_free_urb(ictx->rx_urb_intf1); in free_imon_context() 475 kfree(ictx); in free_imon_context() 487 struct imon_context *ictx = NULL; in display_open() local 501 ictx = usb_get_intfdata(interface); in display_open() 503 if (!ictx) { in display_open() 509 mutex_lock(&ictx->lock); in display_open() [all …]
|
/linux-4.1.27/fs/ntfs/ |
D | index.h | 89 extern void ntfs_index_ctx_put(ntfs_index_context *ictx); 92 ntfs_index_context *ictx); 111 static inline void ntfs_index_entry_flush_dcache_page(ntfs_index_context *ictx) in ntfs_index_entry_flush_dcache_page() argument 113 if (ictx->is_in_root) in ntfs_index_entry_flush_dcache_page() 114 flush_dcache_mft_record_page(ictx->actx->ntfs_ino); in ntfs_index_entry_flush_dcache_page() 116 flush_dcache_page(ictx->page); in ntfs_index_entry_flush_dcache_page() 137 static inline void ntfs_index_entry_mark_dirty(ntfs_index_context *ictx) in ntfs_index_entry_mark_dirty() argument 139 if (ictx->is_in_root) in ntfs_index_entry_mark_dirty() 140 mark_mft_record_dirty(ictx->actx->ntfs_ino); in ntfs_index_entry_mark_dirty() 142 mark_ntfs_record_dirty(ictx->page, in ntfs_index_entry_mark_dirty() [all …]
|
D | index.c | 41 ntfs_index_context *ictx; in ntfs_index_ctx_get() local 43 ictx = kmem_cache_alloc(ntfs_index_ctx_cache, GFP_NOFS); in ntfs_index_ctx_get() 44 if (ictx) in ntfs_index_ctx_get() 45 *ictx = (ntfs_index_context){ .idx_ni = idx_ni }; in ntfs_index_ctx_get() 46 return ictx; in ntfs_index_ctx_get() 57 void ntfs_index_ctx_put(ntfs_index_context *ictx) in ntfs_index_ctx_put() argument 59 if (ictx->entry) { in ntfs_index_ctx_put() 60 if (ictx->is_in_root) { in ntfs_index_ctx_put() 61 if (ictx->actx) in ntfs_index_ctx_put() 62 ntfs_attr_put_search_ctx(ictx->actx); in ntfs_index_ctx_put() [all …]
|
D | quota.c | 39 ntfs_index_context *ictx; in ntfs_mark_quotas_out_of_date() local 52 ictx = ntfs_index_ctx_get(NTFS_I(vol->quota_q_ino)); in ntfs_mark_quotas_out_of_date() 53 if (!ictx) { in ntfs_mark_quotas_out_of_date() 57 err = ntfs_index_lookup(&qid, sizeof(qid), ictx); in ntfs_mark_quotas_out_of_date() 67 if (ictx->data_len < offsetof(QUOTA_CONTROL_ENTRY, sid)) { in ntfs_mark_quotas_out_of_date() 72 qce = (QUOTA_CONTROL_ENTRY*)ictx->data; in ntfs_mark_quotas_out_of_date() 97 ntfs_index_entry_flush_dcache_page(ictx); in ntfs_mark_quotas_out_of_date() 98 ntfs_index_entry_mark_dirty(ictx); in ntfs_mark_quotas_out_of_date() 100 ntfs_index_ctx_put(ictx); in ntfs_mark_quotas_out_of_date() 111 if (ictx) in ntfs_mark_quotas_out_of_date() [all …]
|
/linux-4.1.27/arch/s390/crypto/ |
D | sha1_s390.c | 63 const struct sha1_state *ictx = in; in sha1_import() local 65 sctx->count = ictx->count; in sha1_import() 66 memcpy(sctx->state, ictx->state, sizeof(ictx->state)); in sha1_import() 67 memcpy(sctx->buf, ictx->buffer, sizeof(ictx->buffer)); in sha1_import()
|
D | sha512_s390.c | 58 const struct sha512_state *ictx = in; in sha512_import() local 60 if (unlikely(ictx->count[1])) in sha512_import() 62 sctx->count = ictx->count[0]; in sha512_import() 64 memcpy(sctx->state, ictx->state, sizeof(ictx->state)); in sha512_import() 65 memcpy(sctx->buf, ictx->buf, sizeof(ictx->buf)); in sha512_import()
|
D | sha256_s390.c | 56 const struct sha256_state *ictx = in; in sha256_import() local 58 sctx->count = ictx->count; in sha256_import() 59 memcpy(sctx->state, ictx->state, sizeof(ictx->state)); in sha256_import() 60 memcpy(sctx->buf, ictx->buf, sizeof(ictx->buf)); in sha256_import()
|
/linux-4.1.27/crypto/ |
D | ccm.c | 435 struct ccm_instance_ctx *ictx = crypto_instance_ctx(inst); in crypto_ccm_init_tfm() local 442 cipher = crypto_spawn_cipher(&ictx->cipher); in crypto_ccm_init_tfm() 446 ctr = crypto_spawn_skcipher(&ictx->ctr); in crypto_ccm_init_tfm() 484 struct ccm_instance_ctx *ictx; in crypto_ccm_alloc_common() local 503 inst = kzalloc(sizeof(*inst) + sizeof(*ictx), GFP_KERNEL); in crypto_ccm_alloc_common() 508 ictx = crypto_instance_ctx(inst); in crypto_ccm_alloc_common() 510 err = crypto_init_spawn(&ictx->cipher, cipher, inst, in crypto_ccm_alloc_common() 515 crypto_set_skcipher_spawn(&ictx->ctr, inst); in crypto_ccm_alloc_common() 516 err = crypto_grab_skcipher(&ictx->ctr, ctr_name, 0, in crypto_ccm_alloc_common() 522 ctr = crypto_skcipher_spawn_alg(&ictx->ctr); in crypto_ccm_alloc_common() [all …]
|
D | cryptd.c | 167 struct cryptd_instance_ctx *ictx = crypto_instance_ctx(inst); in cryptd_get_queue() local 168 return ictx->queue; in cryptd_get_queue() 276 struct cryptd_instance_ctx *ictx = crypto_instance_ctx(inst); in cryptd_blkcipher_init_tfm() local 277 struct crypto_spawn *spawn = &ictx->spawn; in cryptd_blkcipher_init_tfm() 397 struct hashd_instance_ctx *ictx = crypto_instance_ctx(inst); in cryptd_hash_init_tfm() local 398 struct crypto_shash_spawn *spawn = &ictx->spawn; in cryptd_hash_init_tfm() 721 struct aead_instance_ctx *ictx = crypto_instance_ctx(inst); in cryptd_aead_init_tfm() local 722 struct crypto_aead_spawn *spawn = &ictx->aead_spawn; in cryptd_aead_init_tfm()
|
D | mcryptd.c | 223 struct mcryptd_instance_ctx *ictx = crypto_instance_ctx(inst); in mcryptd_get_queue() local 225 return ictx->queue; in mcryptd_get_queue() 278 struct hashd_instance_ctx *ictx = crypto_instance_ctx(inst); in mcryptd_hash_init_tfm() local 279 struct crypto_shash_spawn *spawn = &ictx->spawn; in mcryptd_hash_init_tfm()
|
D | pcrypt.c | 277 struct pcrypt_instance_ctx *ictx = crypto_instance_ctx(inst); in pcrypt_aead_init_tfm() local 281 ictx->tfm_count++; in pcrypt_aead_init_tfm() 283 cpu_index = ictx->tfm_count % cpumask_weight(cpu_online_mask); in pcrypt_aead_init_tfm()
|
D | gcm.c | 654 struct gcm_instance_ctx *ictx = crypto_instance_ctx(inst); in crypto_gcm_init_tfm() local 661 ghash = crypto_spawn_ahash(&ictx->ghash); in crypto_gcm_init_tfm() 665 ctr = crypto_spawn_skcipher(&ictx->ctr); in crypto_gcm_init_tfm() 1237 struct crypto_rfc4543_instance_ctx *ictx = crypto_instance_ctx(inst); in crypto_rfc4543_init_tfm() local 1238 struct crypto_aead_spawn *spawn = &ictx->aead; in crypto_rfc4543_init_tfm() 1249 null = crypto_spawn_blkcipher(&ictx->null.base); in crypto_rfc4543_init_tfm()
|
D | authenc.c | 550 struct authenc_instance_ctx *ictx = crypto_instance_ctx(inst); in crypto_authenc_init_tfm() local 556 auth = crypto_spawn_ahash(&ictx->auth); in crypto_authenc_init_tfm() 560 enc = crypto_spawn_skcipher(&ictx->enc); in crypto_authenc_init_tfm()
|
D | authencesn.c | 642 struct authenc_esn_instance_ctx *ictx = crypto_instance_ctx(inst); in crypto_authenc_esn_init_tfm() local 648 auth = crypto_spawn_ahash(&ictx->auth); in crypto_authenc_esn_init_tfm() 652 enc = crypto_spawn_skcipher(&ictx->enc); in crypto_authenc_esn_init_tfm()
|
/linux-4.1.27/drivers/net/ethernet/broadcom/ |
D | cnic.c | 1688 struct iscsi_context *ictx; in cnic_setup_bnx2x_ctx() local 1699 ictx = cnic_get_bnx2x_ctx(dev, cid, 1, &context_addr); in cnic_setup_bnx2x_ctx() 1700 if (ictx == NULL) in cnic_setup_bnx2x_ctx() 1705 ictx->xstorm_ag_context.hq_prod = 1; in cnic_setup_bnx2x_ctx() 1707 ictx->xstorm_st_context.iscsi.first_burst_length = in cnic_setup_bnx2x_ctx() 1709 ictx->xstorm_st_context.iscsi.max_send_pdu_length = in cnic_setup_bnx2x_ctx() 1711 ictx->xstorm_st_context.iscsi.sq_pbl_base.lo = in cnic_setup_bnx2x_ctx() 1713 ictx->xstorm_st_context.iscsi.sq_pbl_base.hi = in cnic_setup_bnx2x_ctx() 1715 ictx->xstorm_st_context.iscsi.sq_curr_pbe.lo = req2->sq_first_pte.hi; in cnic_setup_bnx2x_ctx() 1716 ictx->xstorm_st_context.iscsi.sq_curr_pbe.hi = req2->sq_first_pte.lo; in cnic_setup_bnx2x_ctx() [all …]
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | channel.c | 232 struct ath_chanctx *ictx; in ath_chanctx_check_active() local 260 ictx = ctx; in ath_chanctx_check_active() 287 ictx->flush_timeout = HZ / 5; in ath_chanctx_check_active() 293 ictx->flush_timeout = usecs_to_jiffies(sc->sched.channel_switch_time); in ath_chanctx_check_active()
|