Home
last modified time | relevance | path

Searched refs:vcp (Results 1 – 11 of 11) sorted by relevance

/Linux-v6.1/fs/coda/
Dpsdev.c60 struct venus_comm *vcp = (struct venus_comm *) file->private_data; in coda_psdev_poll() local
63 poll_wait(file, &vcp->vc_waitq, wait); in coda_psdev_poll()
64 mutex_lock(&vcp->vc_mutex); in coda_psdev_poll()
65 if (!list_empty(&vcp->vc_pending)) in coda_psdev_poll()
67 mutex_unlock(&vcp->vc_mutex); in coda_psdev_poll()
94 struct venus_comm *vcp = (struct venus_comm *) file->private_data; in coda_psdev_write() local
133 error = coda_downcall(vcp, hdr.opcode, dcbuf, nbytes); in coda_psdev_write()
147 mutex_lock(&vcp->vc_mutex); in coda_psdev_write()
148 list_for_each(lh, &vcp->vc_processing) { in coda_psdev_write()
156 mutex_unlock(&vcp->vc_mutex); in coda_psdev_write()
[all …]
Dupcall.c651 static inline void coda_waitfor_upcall(struct venus_comm *vcp, in coda_waitfor_upcall() argument
685 mutex_unlock(&vcp->vc_mutex); in coda_waitfor_upcall()
690 mutex_lock(&vcp->vc_mutex); in coda_waitfor_upcall()
709 static int coda_upcall(struct venus_comm *vcp, in coda_upcall() argument
718 mutex_lock(&vcp->vc_mutex); in coda_upcall()
720 if (!vcp->vc_inuse) { in coda_upcall()
733 buffer->ih.unique = ++vcp->vc_seq; in coda_upcall()
744 list_add_tail(&req->uc_chain, &vcp->vc_pending); in coda_upcall()
745 wake_up_interruptible(&vcp->vc_waitq); in coda_upcall()
749 mutex_unlock(&vcp->vc_mutex); in coda_upcall()
[all …]
Dinode.c237 struct venus_comm *vcp = coda_vcp(sb); in coda_put_super() local
238 mutex_lock(&vcp->vc_mutex); in coda_put_super()
239 vcp->vc_sb = NULL; in coda_put_super()
241 mutex_unlock(&vcp->vc_mutex); in coda_put_super()
242 mutex_destroy(&vcp->vc_mutex); in coda_put_super()
Dcoda_psdev.h82 int coda_downcall(struct venus_comm *vcp, int opcode, union outputArgs *out,
/Linux-v6.1/drivers/tty/vt/
Dvt_ioctl.c702 struct vc_data *vcp; in vt_resizex() local
707 vcp = vc_cons[i].d; in vt_resizex()
708 if (vcp) { in vt_resizex()
710 int save_scan_lines = vcp->vc_scan_lines; in vt_resizex()
711 int save_cell_height = vcp->vc_cell_height; in vt_resizex()
714 vcp->vc_scan_lines = v.v_vlin; in vt_resizex()
716 vcp->vc_cell_height = v.v_clin; in vt_resizex()
717 vcp->vc_resize_user = 1; in vt_resizex()
718 ret = vc_resize(vcp, v.v_cols, v.v_rows); in vt_resizex()
720 vcp->vc_scan_lines = save_scan_lines; in vt_resizex()
[all …]
/Linux-v6.1/arch/arm/boot/dts/
Dkeystone-k2hk-clocks.dtsi307 clock-output-names = "vcp-0";
317 clock-output-names = "vcp-1";
327 clock-output-names = "vcp-2";
337 clock-output-names = "vcp-3";
347 clock-output-names = "vcp-4";
357 clock-output-names = "vcp-5";
367 clock-output-names = "vcp-6";
377 clock-output-names = "vcp-7";
Dkeystone-k2l-clocks.dtsi168 clock-output-names = "vcp-0";
178 clock-output-names = "vcp-1";
188 clock-output-names = "vcp-2";
198 clock-output-names = "vcp-3";
/Linux-v6.1/drivers/media/usb/pvrusb2/
Dpvrusb2-v4l2.c417 struct pvr2_ctrl *hcp, *vcp; in pvr2_try_fmt_vid_cap() local
422 vcp = pvr2_hdw_get_ctrl_by_id(hdw, PVR2_CID_VRES); in pvr2_try_fmt_vid_cap()
433 lmin = pvr2_ctrl_get_min(vcp); in pvr2_try_fmt_vid_cap()
434 lmax = pvr2_ctrl_get_max(vcp); in pvr2_try_fmt_vid_cap()
435 pvr2_ctrl_get_def(vcp, &ldef); in pvr2_try_fmt_vid_cap()
454 struct pvr2_ctrl *hcp, *vcp; in pvr2_s_fmt_vid_cap() local
460 vcp = pvr2_hdw_get_ctrl_by_id(hdw, PVR2_CID_VRES); in pvr2_s_fmt_vid_cap()
462 pvr2_ctrl_set_value(vcp, vf->fmt.pix.height); in pvr2_s_fmt_vid_cap()
/Linux-v6.1/drivers/gpu/drm/vmwgfx/
Dvmwgfx_kms.c148 void vmw_du_destroy_cursor_mob_array(struct vmw_cursor_plane *vcp) in vmw_du_destroy_cursor_mob_array() argument
152 for (i = 0; i < ARRAY_SIZE(vcp->cursor_mob); i++) { in vmw_du_destroy_cursor_mob_array()
153 if (vcp->cursor_mob[i] != NULL) { in vmw_du_destroy_cursor_mob_array()
154 ttm_bo_unpin(vcp->cursor_mob[i]); in vmw_du_destroy_cursor_mob_array()
155 ttm_bo_put(vcp->cursor_mob[i]); in vmw_du_destroy_cursor_mob_array()
156 kfree(vcp->cursor_mob[i]); in vmw_du_destroy_cursor_mob_array()
157 vcp->cursor_mob[i] = NULL; in vmw_du_destroy_cursor_mob_array()
527 struct vmw_cursor_plane *vcp = vmw_plane_to_vcp(plane); in vmw_du_cursor_plane_prepare_fb() local
580 if (cursor_mob_idx == 0 && vcp->cursor_mob[0] == NULL) in vmw_du_cursor_plane_prepare_fb()
581 if (vmw_du_create_cursor_mob_array(vcp) != 0) in vmw_du_cursor_plane_prepare_fb()
[all …]
Dvmwgfx_kms.h475 int vmw_du_create_cursor_mob_array(struct vmw_cursor_plane *vcp);
476 void vmw_du_destroy_cursor_mob_array(struct vmw_cursor_plane *vcp);
/Linux-v6.1/arch/s390/tools/
Dopcodes.txt903 e677 vcp VRR_0VV0U