Searched defs:cookie (Results 1 - 25 of 230) sorted by relevance

12345678910

/drivers/dma/
H A Ddmaengine.h17 chan->cookie = DMA_MIN_COOKIE;
22 * dma_cookie_assign - assign a DMA engine cookie to the descriptor
23 * @tx: descriptor needing cookie
25 * Assign a unique non-zero per-channel cookie to the descriptor.
31 dma_cookie_t cookie; local
33 cookie = chan->cookie + 1;
34 if (cookie < DMA_MIN_COOKIE)
35 cookie = DMA_MIN_COOKIE;
36 tx->cookie
67 dma_cookie_status(struct dma_chan *chan, dma_cookie_t cookie, struct dma_tx_state *state) argument
[all...]
H A Dvirt-dma.c27 dma_cookie_t cookie; local
30 cookie = dma_cookie_assign(tx);
36 vc, vd, cookie);
38 return cookie;
43 dma_cookie_t cookie)
48 if (vd->tx.cookie == cookie)
42 vchan_find_desc(struct virt_dma_chan *vc, dma_cookie_t cookie) argument
H A Dvirt-dma.h87 dma_cookie_t cookie; local
89 cookie = vd->tx.cookie;
92 vd, cookie);
/drivers/infiniband/hw/ipath/
H A Dipath_wc_x86_64.c125 int cookie; local
130 cookie = mtrr_add(pioaddr, piolen, MTRR_TYPE_WRCOMB, 0);
131 if (cookie < 0) {
136 cookie);
141 "cookie is %d\n", cookie);
142 dd->ipath_wc_cookie = cookie;
/drivers/infiniband/hw/qib/
H A Dqib_wc_x86_64.c118 int cookie; local
120 cookie = mtrr_add(pioaddr, piolen, MTRR_TYPE_WRCOMB, 0);
121 if (cookie < 0) {
125 cookie);
129 dd->wc_cookie = cookie;
/drivers/net/wireless/ath/ath6kl/
H A Drecovery.c57 void ath6kl_recovery_hb_event(struct ath6kl *ar, u32 cookie) argument
59 if (cookie == ar->fw_recovery.seq_num)
/drivers/gpu/drm/nouveau/core/core/
H A Dramht.c69 nouveau_ramht_remove(struct nouveau_ramht *ramht, int cookie) argument
72 nv_wo32(ramht, cookie + 0, 0x00000000);
73 nv_wo32(ramht, cookie + 4, 0x00000000);
/drivers/infiniband/hw/cxgb3/
H A Diwch_cq.c52 u64 cookie; local
67 ret = cxio_poll_cq(wq, &(chp->cq), &cqe, &cqe_flushed, &cookie,
81 wc->wr_id = cookie;
87 "lo 0x%x cookie 0x%llx\n", __func__,
90 CQE_WRID_LOW(cqe), (unsigned long long) cookie);
/drivers/staging/lustre/lustre/llite/
H A Dsymlink.c154 static void ll_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie) argument
156 ptlrpc_req_finished(cookie);
H A Dvvp_object.c57 static int vvp_object_print(const struct lu_env *env, void *cookie, argument
64 (*p)(env, cookie, "(%s %d %d) inode: %p ",
70 (*p)(env, cookie, "%lu/%u %o %u %d %p "DFID,
/drivers/staging/lustre/lustre/lov/
H A Dlovsub_object.c97 static int lovsub_object_print(const struct lu_env *env, void *cookie, argument
102 return (*p)(env, cookie, "[%d]", los->lso_index);
H A Dlov_page.c132 void *cookie, lu_printer_t printer)
136 return (*printer)(env, cookie, LUSTRE_LOV_NAME"-page@%p\n", lp);
130 lov_page_print(const struct lu_env *env, const struct cl_page_slice *slice, void *cookie, lu_printer_t printer) argument
/drivers/crypto/qce/
H A Ddma.c140 dma_cookie_t cookie; local
151 cookie = dmaengine_submit(desc);
153 return dma_submit_error(cookie);
/drivers/misc/mic/card/
H A Dmic_device.c146 * returns: The cookie that is transparent to the caller. Passed
159 unsigned long cookie; local
169 cookie = index;
170 return (struct mic_irq *)cookie;
178 * @cookie: cookie obtained during a successful call to mic_request_threaded_irq
184 void mic_free_card_irq(struct mic_irq *cookie, void *data) argument
189 index = (unsigned long)cookie & 0xFFFFU;
/drivers/mmc/host/
H A Dtmio_mmc_dma.c53 dma_cookie_t cookie; local
93 cookie = dmaengine_submit(desc);
94 if (cookie < 0) {
96 ret = cookie;
99 dev_dbg(&host->pdev->dev, "%s(): mapped %d -> %d, cookie %d, rq %p\n",
100 __func__, host->sg_len, ret, cookie, host->mrq);
120 dev_dbg(&host->pdev->dev, "%s(): desc %p, cookie %d, sg[%d]\n", __func__,
121 desc, cookie, host->sg_len);
130 dma_cookie_t cookie; local
174 cookie
[all...]
/drivers/net/wireless/ti/wl1251/
H A Dspi.c39 static irqreturn_t wl1251_irq(int irq, void *cookie) argument
45 wl = cookie;
/drivers/parport/
H A Dieee1284.c48 static void timeout_waiting_on_port (unsigned long cookie) argument
50 parport_ieee1284_wakeup (port_from_cookie[cookie % PARPORT_MAX]);
/drivers/pps/
H A Dpps.c359 * Look up a pps device by magic cookie.
360 * The cookie is usually a pointer to some enclosing device, but this
371 * The cookie is automatically set to NULL in pps_unregister_source()
376 struct pps_device *pps_lookup_dev(void const *cookie) argument
383 if (cookie == pps->lookup_cookie)
/drivers/scsi/
H A Dscsi_pm.c111 static void async_sdev_resume(void *dev, async_cookie_t cookie) argument
116 static void async_sdev_thaw(void *dev, async_cookie_t cookie) argument
121 static void async_sdev_restore(void *dev, async_cookie_t cookie) argument
/drivers/staging/lustre/lustre/obdclass/
H A Dlustre_handles.c61 * Generate a unique 64bit cookie (hash) for a handle and insert it into
73 * This is fast, but simplistic cookie generation algorithm, it will
85 CWARN("The universe has been exhausted: cookie wrap-around.\n");
150 void *class_handle2object(__u64 cookie) argument
160 bucket = handle_hash + (cookie & HANDLE_HASH_MASK);
164 if (h->h_cookie != cookie)
/drivers/staging/lustre/lustre/osc/
H A Dosc_object.c128 int osc_lvb_print(const struct lu_env *env, void *cookie, argument
131 return (*p)(env, cookie, "size: %llu mtime: %llu atime: %llu ctime: %llu blocks: %llu",
136 static int osc_object_print(const struct lu_env *env, void *cookie, argument
143 (*p)(env, cookie, "id: "DOSTID" "
148 osc_lvb_print(env, cookie, p, &oinfo->loi_lvb);
/drivers/gpu/drm/i915/
H A Dintel_fbdev.c674 void intel_fbdev_initial_config(void *data, async_cookie_t cookie) argument
/drivers/gpu/drm/nouveau/core/engine/fifo/
H A Dnv50.c186 nv50_fifo_object_detach(struct nouveau_object *parent, int cookie) argument
189 nouveau_ramht_remove(chan->ramht, cookie);
/drivers/media/platform/s5p-tv/
H A Dmixer_reg.c147 MXR_GRP_CFG_FORMAT_VAL(fmt->cookie), MXR_GRP_CFG_FORMAT_MASK);
179 vp_write_mask(mdev, VP_MODE, fmt->cookie, VP_MODE_FMT_MASK);
323 void mxr_reg_s_output(struct mxr_device *mdev, int cookie) argument
327 val = cookie == 0 ? MXR_CFG_DST_SDO : MXR_CFG_DST_HDMI;
H A Dsdo_drv.c40 unsigned int cookie; member in struct:sdo_format
120 { V4L2_STD_PAL_N, .height = 576, .cookie = SDO_PAL_N },
121 { V4L2_STD_PAL_Nc, .height = 576, .cookie = SDO_PAL_NC },
122 { V4L2_STD_PAL_M, .height = 480, .cookie = SDO_PAL_M },
123 { V4L2_STD_PAL_60, .height = 480, .cookie = SDO_PAL_60 },
124 { V4L2_STD_NTSC_443, .height = 480, .cookie = SDO_NTSC_443 },
125 { V4L2_STD_PAL, .height = 576, .cookie = SDO_PAL_BGHID },
126 { V4L2_STD_NTSC_M, .height = 480, .cookie = SDO_NTSC_M },
306 sdo_write_mask(sdev, SDO_CONFIG, sdev->fmt->cookie, SDO_STANDARD_MASK);

Completed in 4311 milliseconds

12345678910