Home
last modified time | relevance | path

Searched refs:vs (Results 1 – 159 of 159) sorted by relevance

/linux-4.1.27/drivers/vhost/
Dscsi.c240 static void vhost_scsi_init_inflight(struct vhost_scsi *vs, in vhost_scsi_init_inflight() argument
248 vq = &vs->vqs[i].vq; in vhost_scsi_init_inflight()
253 idx = vs->vqs[i].inflight_idx; in vhost_scsi_init_inflight()
255 old_inflight[i] = &vs->vqs[i].inflights[idx]; in vhost_scsi_init_inflight()
258 vs->vqs[i].inflight_idx = idx ^ 1; in vhost_scsi_init_inflight()
259 new_inflight = &vs->vqs[i].inflights[idx ^ 1]; in vhost_scsi_init_inflight()
534 struct vhost_scsi *vs = cmd->tvc_vhost; in vhost_scsi_complete_cmd() local
536 llist_add(&cmd->tvc_completion_list, &vs->vs_completion_list); in vhost_scsi_complete_cmd()
538 vhost_work_queue(&vs->dev, &vs->vs_completion_work); in vhost_scsi_complete_cmd()
567 static void vhost_scsi_free_evt(struct vhost_scsi *vs, struct vhost_scsi_evt *evt) in vhost_scsi_free_evt() argument
[all …]
/linux-4.1.27/arch/arm/vfp/
Dvfpsingle.c54 static void vfp_single_normalise_denormal(struct vfp_single *vs) in vfp_single_normalise_denormal() argument
56 int bits = 31 - fls(vs->significand); in vfp_single_normalise_denormal()
58 vfp_single_dump("normalise_denormal: in", vs); in vfp_single_normalise_denormal()
61 vs->exponent -= bits - 1; in vfp_single_normalise_denormal()
62 vs->significand <<= bits; in vfp_single_normalise_denormal()
65 vfp_single_dump("normalise_denormal: out", vs); in vfp_single_normalise_denormal()
70 u32 __vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions) in __vfp_single_normaliseround() argument
72 u32 vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions, const char … in __vfp_single_normaliseround()
78 vfp_single_dump("pack: in", vs); in __vfp_single_normaliseround()
83 if (vs->exponent == 255 && (vs->significand == 0 || exceptions)) in __vfp_single_normaliseround()
[all …]
Dvfp.h249 u32 __vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions);
251 u32 vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions, const char …
/linux-4.1.27/arch/mips/math-emu/
Dieee754int.h58 #define EXPLODESP(v, vc, vs, ve, vm) \ argument
60 vs = SPSIGN(v); \
92 #define EXPLODEDP(v, vc, vs, ve, vm) \ argument
95 vs = DPSIGN(v); \
119 #define FLUSHDP(v, vc, vs, ve, vm) \ argument
126 v = ieee754dp_zero(vs); \
130 #define FLUSHSP(v, vc, vs, ve, vm) \ argument
137 v = ieee754sp_zero(vs); \
/linux-4.1.27/net/openvswitch/
Dvport-vxlan.c51 struct vxlan_sock *vs; member
64 static void vxlan_rcv(struct vxlan_sock *vs, struct sk_buff *skb, in vxlan_rcv() argument
69 struct vport *vport = vs->data; in vxlan_rcv()
95 __be16 dst_port = inet_sk(vxlan_port->vs->sock->sk)->inet_sport; in vxlan_get_options()
121 vxlan_sock_release(vxlan_port->vs); in vxlan_tnl_destroy()
156 struct vxlan_sock *vs; in vxlan_tnl_create() local
192 vs = vxlan_sock_add(net, htons(dst_port), vxlan_rcv, vport, true, in vxlan_tnl_create()
194 if (IS_ERR(vs)) { in vxlan_tnl_create()
196 return (void *)vs; in vxlan_tnl_create()
198 vxlan_port->vs = vs; in vxlan_tnl_create()
[all …]
/linux-4.1.27/net/rose/
Drose_out.c41 skb->data[2] |= (rose->vs << 1) & 0x0E; in rose_send_iframe()
63 start = (skb_peek(&rose->ack_queue) == NULL) ? rose->va : rose->vs; in rose_kick()
69 rose->vs = start; in rose_kick()
91 rose->vs = (rose->vs + 1) % ROSE_MODULUS; in rose_kick()
98 } while (rose->vs != end && in rose_kick()
Drose_in.c48 rose->vs = 0; in rose_state1_machine()
115 rose->vs = 0; in rose_state3_machine()
133 rose->vs = 0; in rose_state3_machine()
155 rose->vs = 0; in rose_state3_machine()
174 rose->vs = 0; in rose_state3_machine()
227 rose->vs = 0; in rose_state4_machine()
Drose_subr.c90 while (vc != rose->vs) { in rose_validate_nr()
95 return nr == rose->vs; in rose_validate_nr()
Daf_rose.c1031 make_rose->vs = 0; in rose_rx_call_request()
1360 rose->vs = 0; in rose_ioctl()
1430 rose->vs, in rose_info_show()
/linux-4.1.27/net/lapb/
Dlapb_out.c53 frame[0] |= lapb->vs << 1; in lapb_send_iframe()
62 *frame |= lapb->vs << 1; in lapb_send_iframe()
66 lapb->dev, lapb->state, poll_bit, lapb->vs, lapb->vr); in lapb_send_iframe()
77 start = !skb_peek(&lapb->ack_queue) ? lapb->va : lapb->vs; in lapb_kick()
82 lapb->vs = start; in lapb_kick()
103 lapb->vs = (lapb->vs + 1) % modulus; in lapb_kick()
110 } while (lapb->vs != end && (skb = skb_dequeue(&lapb->write_queue)) != NULL); in lapb_kick()
197 if (lapb->vs == nr) { in lapb_check_iframes_acked()
Dlapb_subr.c98 while (vc != lapb->vs) { in lapb_validate_nr()
104 return nr == lapb->vs; in lapb_validate_nr()
280 *dptr++ = (lapb->vs << 1) & 0xFE; in lapb_transmit_frmr()
295 *dptr = (lapb->vs << 1) & 0x0E; in lapb_transmit_frmr()
Dlapb_in.c66 lapb->vs = 0; in lapb_state0_machine()
86 lapb->vs = 0; in lapb_state0_machine()
164 lapb->vs = 0; in lapb_state1_machine()
275 lapb->vs = 0; in lapb_state3_machine()
293 lapb->vs = 0; in lapb_state3_machine()
500 lapb->vs = 0; in lapb_state4_machine()
520 lapb->vs = 0; in lapb_state4_machine()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/instmem/
Dnv40.c54 int ret, bar, vs; in nv40_instmem_ctor() local
78 vs = hweight8((nv_rd32(priv, 0x001540) & 0x0000ff00) >> 8); in nv40_instmem_ctor()
79 if (device->chipset == 0x40) priv->base.reserved = 0x6aa0 * vs; in nv40_instmem_ctor()
80 else if (device->chipset < 0x43) priv->base.reserved = 0x4f00 * vs; in nv40_instmem_ctor()
81 else if (nv44_gr_class(priv)) priv->base.reserved = 0x4980 * vs; in nv40_instmem_ctor()
82 else priv->base.reserved = 0x4a40 * vs; in nv40_instmem_ctor()
/linux-4.1.27/drivers/net/
Dvxlan.c234 static inline struct hlist_head *vni_head(struct vxlan_sock *vs, u32 id) in vni_head() argument
236 return &vs->vni_list[hash_32(id, VNI_HASH_BITS)]; in vni_head()
266 struct vxlan_sock *vs; in vxlan_find_sock() local
270 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) { in vxlan_find_sock()
271 if (inet_sk(vs->sock->sk)->inet_sport == port && in vxlan_find_sock()
272 inet_sk(vs->sock->sk)->sk.sk_family == family && in vxlan_find_sock()
273 vs->flags == flags) in vxlan_find_sock()
274 return vs; in vxlan_find_sock()
279 static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, u32 id) in vxlan_vs_find_vni() argument
283 hlist_for_each_entry_rcu(vxlan, vni_head(vs, id), hlist) { in vxlan_vs_find_vni()
[all …]
/linux-4.1.27/net/x25/
Dx25_out.c129 skb->data[2] = (x25->vs << 1) & 0xFE; in x25_send_iframe()
134 skb->data[2] |= (x25->vs << 1) & 0x0E; in x25_send_iframe()
169 start = skb_peek(&x25->ack_queue) ? x25->vs : x25->va; in x25_kick()
175 x25->vs = start; in x25_kick()
197 x25->vs = (x25->vs + 1) % modulus; in x25_kick()
204 } while (x25->vs != end && in x25_kick()
Dx25_in.c103 x25->vs = 0; in x25_state1_machine()
218 x25->vs = 0; in x25_state3_machine()
240 x25->vs = 0; in x25_state3_machine()
262 x25->vs = 0; in x25_state3_machine()
280 x25->vs = 0; in x25_state3_machine()
353 x25->vs = 0; in x25_state4_machine()
Dx25_subr.c101 while (vc != x25->vs) { in x25_validate_nr()
107 return nr == x25->vs ? 1 : 0; in x25_validate_nr()
Dx25_proc.c108 devname, x25->lci & 0x0FFF, x25->state, x25->vs, x25->vr, in x25_seq_socket_show()
/linux-4.1.27/net/netrom/
Dnr_out.c89 skb->data[2] = nr->vs; in nr_send_iframe()
140 start = (skb_peek(&nr->ack_queue) == NULL) ? nr->va : nr->vs; in nr_kick()
146 nr->vs = start; in nr_kick()
171 nr->vs = (nr->vs + 1) % NR_MODULUS; in nr_kick()
178 } while (nr->vs != end && in nr_kick()
263 if (nrom->vs == nr) { in nr_check_iframes_acked()
Dnr_subr.c93 while (vc != nrom->vs) { in nr_validate_nr()
98 return nr == nrom->vs; in nr_validate_nr()
Dnr_in.c85 nr->vs = 0; in nr_state1_machine()
Daf_netrom.c1005 nr_make->vs = 0; in nr_rx_frame()
1310 nr->vs, in nr_info_show()
/linux-4.1.27/net/ax25/
Dax25_out.c230 *frame |= (ax25->vs << 1); in ax25_send_iframe()
235 frame[0] |= (ax25->vs << 1); in ax25_send_iframe()
260 start = (skb_peek(&ax25->ack_queue) == NULL) ? ax25->va : ax25->vs; in ax25_kick()
280 ax25->vs = start; in ax25_kick()
291 next = (ax25->vs + 1) % ax25->modulus; in ax25_kick()
312 ax25->vs = next; in ax25_kick()
382 if (ax25->vs == nr) { in ax25_check_iframes_acked()
Dax25_std_in.c67 ax25->vs = 0; in ax25_std_state1_machine()
164 ax25->vs = 0; in ax25_std_state3_machine()
289 ax25->vs = 0; in ax25_std_state4_machine()
317 if (ax25->vs == ax25->va) { in ax25_std_state4_machine()
346 if (ax25->vs == ax25->va) { in ax25_std_state4_machine()
Dax25_subr.c86 while (vc != ax25->vs) { in ax25_validate_nr()
91 if (nr == ax25->vs) return 1; in ax25_validate_nr()
Dax25_ds_in.c59 ax25->vs = 0; in ax25_ds_state1_machine()
167 ax25->vs = 0; in ax25_ds_state3_machine()
Daf_ax25.c1785 ax25_info.vs = ax25->vs; in ax25_ioctl()
1788 ax25_info.vs_max = ax25->vs; /* reserved */ in ax25_ioctl()
1899 ax25->vs, ax25->vr, ax25->va, in ax25_info_show()
/linux-4.1.27/drivers/video/fbdev/omap/
Dsossi.c398 int hs, vs; in sossi_setup_tearsync() local
405 vs = ps_to_sossi_ticks(vs_pulse_time, div); in sossi_setup_tearsync()
406 if (vs < 8 || vs <= hs || vs >= (1 << 12)) in sossi_setup_tearsync()
408 vs /= 8; in sossi_setup_tearsync()
409 vs--; in sossi_setup_tearsync()
417 hs, vs, hs_pol_inv, vs_pol_inv); in sossi_setup_tearsync()
422 l |= vs << 3; in sossi_setup_tearsync()
Dhwa742.c793 int hs, vs; in setup_tearsync() local
851 vs = vndp; in setup_tearsync()
859 vs = vsw; in setup_tearsync()
869 vs = vs * (hdisp + hndp) * 1000000 / (pix_clk / 1000); /* ps */ in setup_tearsync()
870 vs *= 1000; in setup_tearsync()
872 if (vs <= hs) in setup_tearsync()
875 vs = hs * 12 / 10; in setup_tearsync()
892 hs, vs, (b & 0x3), !use_hsvs); in setup_tearsync()
894 return hwa742.extif->setup_tearsync(1, hs, vs, in setup_tearsync()
/linux-4.1.27/fs/afs/
Dsuper.c531 struct afs_volume_status vs; in afs_statfs() local
540 ret = afs_vnode_get_volume_status(vnode, key, &vs); in afs_statfs()
551 if (vs.max_quota == 0) in afs_statfs()
552 buf->f_blocks = vs.part_max_blocks; in afs_statfs()
554 buf->f_blocks = vs.max_quota; in afs_statfs()
555 buf->f_bavail = buf->f_bfree = buf->f_blocks - vs.blocks_in_use; in afs_statfs()
Dfsclient.c216 struct afs_volume_status *vs) in xdr_decode_AFSFetchVolumeStatus() argument
220 vs->vid = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
221 vs->parent_id = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
222 vs->online = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
223 vs->in_service = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
224 vs->blessed = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
225 vs->needs_salvage = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
226 vs->type = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
227 vs->min_quota = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
228 vs->max_quota = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
[all …]
Dvnode.c877 struct afs_volume_status *vs) in afs_vnode_get_volume_status() argument
897 ret = afs_fs_get_volume_status(server, key, vnode, vs, &afs_sync_call); in afs_vnode_get_volume_status()
/linux-4.1.27/drivers/isdn/hisax/
Disdnl2.c168 p1 = (st->l2.vs - st->l2.va) % 128; in cansend()
170 p1 = (st->l2.vs - st->l2.va) % 8; in cansend()
390 return ((nr - l2->va) % 128) <= ((l2->vs - l2->va) % 128); in legalnr()
392 return ((nr - l2->va) % 8) <= ((l2->vs - l2->va) % 8); in legalnr()
700 st->l2.vs = 0; in l2_start_multi()
741 if (st->l2.vs != st->l2.va) { in l2_restart_multi()
747 st->l2.vs = 0; in l2_restart_multi()
798 } else if (st->l2.vs != st->l2.va) { in l2_connected()
806 st->l2.vs = 0; in l2_connected()
941 if (l2->vs != nr) { in invoke_retransmission()
[all …]
Dhisax.h256 u_int vs, va, vr; member
/linux-4.1.27/net/dcb/
DKconfig12 requirements (highly reliable, no drops vs. best effort vs. low
/linux-4.1.27/net/irda/
Dirlap_frame.c726 skb->data[1] = I_FRAME | (self->vs << 1); in irlap_send_data_primary()
741 self->vs = (self->vs + 1) % 8; in irlap_send_data_primary()
772 skb->data[1] = I_FRAME | (self->vs << 1); in irlap_send_data_primary_poll()
794 self->vs = (self->vs + 1) % 8; in irlap_send_data_primary_poll()
883 skb->data[1] = I_FRAME | (self->vs << 1); in irlap_send_data_secondary_final()
899 self->vs = (self->vs + 1) % 8; in irlap_send_data_secondary_final()
940 skb->data[1] = I_FRAME | (self->vs << 1); in irlap_send_data_secondary()
954 self->vs = (self->vs + 1) % 8; in irlap_send_data_secondary()
Dirlap.c686 if (nr == self->vs) { in irlap_update_nr_received()
736 if (nr == self->vs) { in irlap_validate_nr_received()
745 if (self->va < self->vs) { in irlap_validate_nr_received()
746 if ((nr >= self->va) && (nr <= self->vs)) in irlap_validate_nr_received()
749 if ((nr >= self->va) || (nr <= self->vs)) in irlap_validate_nr_received()
769 self->vs = self->vr = 0; in irlap_initiate_connection_state()
1143 seq_printf(seq, "vs: %d ", self->vs); in irlap_seq_show()
Dirlap_event.c1462 self->vs, self->vr); in irlap_state_nrm_p()
1875 self->vs, info->ns, self->vr, info->pf); in irlap_state_nrm_s()
/linux-4.1.27/drivers/scsi/fnic/
Dfnic_main.c194 struct vnic_stats *vs; in fnic_get_stats() local
211 vs = fnic->stats; in fnic_get_stats()
212 stats->tx_frames = vs->tx.tx_unicast_frames_ok; in fnic_get_stats()
213 stats->tx_words = vs->tx.tx_unicast_bytes_ok / 4; in fnic_get_stats()
214 stats->rx_frames = vs->rx.rx_unicast_frames_ok; in fnic_get_stats()
215 stats->rx_words = vs->rx.rx_unicast_bytes_ok / 4; in fnic_get_stats()
216 stats->error_frames = vs->tx.tx_errors + vs->rx.rx_errors; in fnic_get_stats()
217 stats->dumped_frames = vs->tx.tx_drops + vs->rx.rx_drop; in fnic_get_stats()
218 stats->invalid_crc_count = vs->rx.rx_crc_errors; in fnic_get_stats()
/linux-4.1.27/drivers/isdn/mISDN/
Dlayer2.c384 p1 = (l2->vs - l2->va) % 128; in cansend()
386 p1 = (l2->vs - l2->va) % 8; in cansend()
595 return ((nr - l2->va) % 128) <= ((l2->vs - l2->va) % 128); in legalnr()
597 return ((nr - l2->va) % 8) <= ((l2->vs - l2->va) % 8); in legalnr()
922 l2->vs = 0; in l2_start_multi()
965 if (l2->vs != l2->va) { in l2_restart_multi()
971 l2->vs = 0; in l2_restart_multi()
1023 } else if (l2->vs != l2->va) { in l2_connected()
1029 l2->vs = 0; in l2_connected()
1169 if (l2->vs != nr) { in invoke_retransmission()
[all …]
Dlayer2.h63 u_int vs, va, vr; member
/linux-4.1.27/arch/mips/kvm/
Dmips.c537 s64 vs[2]; in kvm_mips_get_reg() local
596 vs[0] = get_fpr64(&fpu->fpr[idx], 0); in kvm_mips_get_reg()
597 vs[1] = get_fpr64(&fpu->fpr[idx], 1); in kvm_mips_get_reg()
600 vs[0] = get_fpr64(&fpu->fpr[idx], 1); in kvm_mips_get_reg()
601 vs[1] = get_fpr64(&fpu->fpr[idx], 0); in kvm_mips_get_reg()
703 return copy_to_user(uaddr, vs, 16) ? -EFAULT : 0; in kvm_mips_get_reg()
715 s64 vs[2]; in kvm_mips_set_reg() local
733 return copy_from_user(vs, uaddr, 16) ? -EFAULT : 0; in kvm_mips_set_reg()
794 set_fpr64(&fpu->fpr[idx], 0, vs[0]); in kvm_mips_set_reg()
795 set_fpr64(&fpu->fpr[idx], 1, vs[1]); in kvm_mips_set_reg()
[all …]
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
Ddp.c191 nvbios_dpcfg_match(struct nvkm_bios *bios, u16 outp, u8 pc, u8 vs, u8 pe, in nvbios_dpcfg_match() argument
204 idx = (pc * 10) + vsoff[vs] + pe; in nvbios_dpcfg_match()
208 if (nv_ro08(bios, data + 0x00) == vs && in nvbios_dpcfg_match()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/disp/
Dsorgf110.c76 int ln, int vs, int pe, int pc) in gf110_sor_dp_drv_ctl() argument
93 addr = nvbios_dpcfg_match(bios, addr, pc, vs, pe, in gf110_sor_dp_drv_ctl()
Dpiornv50.c97 nv50_pior_dp_drv_ctl(struct nvkm_output_dp *outp, int ln, int vs, int pe, int pc) in nv50_pior_dp_drv_ctl() argument
101 return port->func->drv_ctl(port, ln, vs, pe); in nv50_pior_dp_drv_ctl()
Dsorg94.c99 g94_sor_dp_drv_ctl(struct nvkm_output_dp *outp, int ln, int vs, int pe, int pc) in g94_sor_dp_drv_ctl() argument
116 addr = nvbios_dpcfg_match(bios, addr, 0, vs, pe, in g94_sor_dp_drv_ctl()
Dsorgm204.c91 int ln, int vs, int pe, int pc) in gm204_sor_dp_drv_ctl() argument
108 addr = nvbios_dpcfg_match(bios, addr, pc, vs, pe, in gm204_sor_dp_drv_ctl()
Doutpdp.h57 int (*drv_ctl)(struct nvkm_output_dp *, int ln, int vs, int pe, int pc);
/linux-4.1.27/drivers/video/fbdev/
Dasiliantfb.c181 unsigned vs = p->var.yres + p->var.lower_margin; in asiliant_set_timing() local
205 write_cr(0x10, (vs - 1) & 0xff); in asiliant_set_timing()
206 write_cr(0x32, ((vs - 1) >> 8) & 0xf); in asiliant_set_timing()
212 write_cr(0x15, (vs - 1) & 0xff); in asiliant_set_timing()
213 write_cr(0x33, ((vs - 1) >> 8) & 0xf); in asiliant_set_timing()
Dtdfxfb.c569 u32 vd, vs, ve, vt, vbs, vbe; in tdfxfb_set_par() local
607 vs = vd + (info->var.lower_margin << 1); in tdfxfb_set_par()
608 ve = vs + (info->var.vsync_len << 1); in tdfxfb_set_par()
615 vs = vd + info->var.lower_margin; in tdfxfb_set_par()
616 ve = vs + info->var.vsync_len; in tdfxfb_set_par()
667 reg.crt[0x07] = ((vs & 0x200) >> 2) | in tdfxfb_set_par()
671 ((vs & 0x100) >> 6) | in tdfxfb_set_par()
675 reg.crt[0x10] = vs; in tdfxfb_set_par()
Dacornfb.c419 unsigned long hs, vs; in acornfb_validate_timing() local
431 vs = hs / in acornfb_validate_timing()
434 return (vs >= monspecs->vfmin && vs <= monspecs->vfmax && in acornfb_validate_timing()
Damifb.c2054 u_short hs, vs, ve; in ami_set_sprite() local
2072 vs = par->diwstrt_v + (my << par->line_shift); in ami_set_sprite()
2073 ve = vs + (par->crsr.height << par->line_shift); in ami_set_sprite()
2076 lofsprite[0] = spr2hw_pos(vs, hs); in ami_set_sprite()
2077 shfsprite[0] = spr2hw_pos(vs + 1, hs); in ami_set_sprite()
2078 if (mod2(vs)) { in ami_set_sprite()
2079 lofsprite[1 << par->crsr.fmode] = spr2hw_ctl(vs, hs, ve); in ami_set_sprite()
2080 shfsprite[1 << par->crsr.fmode] = spr2hw_ctl(vs + 1, hs, ve + 1); in ami_set_sprite()
2083 lofsprite[1 << par->crsr.fmode] = spr2hw_ctl(vs, hs, ve + 1); in ami_set_sprite()
2084 shfsprite[1 << par->crsr.fmode] = spr2hw_ctl(vs + 1, hs, ve); in ami_set_sprite()
[all …]
/linux-4.1.27/include/drm/
Ddrm_modes.h83 #define DRM_MODE(nm, t, c, hd, hss, hse, ht, hsk, vd, vss, vse, vt, vs, f) \ argument
88 .vscan = (vs), .flags = (f), \
/linux-4.1.27/Documentation/
Dsparse.txt41 sure that bitwise types don't get mixed up (little-endian vs big-endian
42 vs cpu-endian vs whatever), and there the constant "0" really _is_
Dinit.txt30 E.g. i386 vs. x86_64 mismatch, or trying to load x86 on ARM hardware.
Dpi-futex.txt35 ratio of lockless vs. locky code for shared data structures is somewhere
Dbus-virt-phys-mapping.txt202 vs
Diostats.txt106 Disks vs Partitions
Dmemory-barriers.txt23 - Read memory barriers vs load speculation.
41 - Locks vs memory accesses.
42 - Locks vs I/O accesses.
58 - Cache coherency vs DMA.
59 - Cache coherency vs MMIO.
660 ACCESS_ONCE(b) = p; /* BUG: No ordering vs. load from a!!! */
1750 See the subsection "Locks vs I/O accesses" for more information.
1800 (3) ACQUIRE vs ACQUIRE implication:
1805 (4) ACQUIRE vs RELEASE implication:
2988 changes vs new data occur in the right order.
Dstatic-keys.txt231 vs. the jump label case just has a 'no-op' or 'jmp 0'. (The jmp 0, is patched
Dunaligned-memory-access.txt232 Alignment vs. Networking
Dthis_cpu_ops.txt250 &this_cpu_ptr(pp)->n vs this_cpu_ptr(&pp->n)
Dkernel-docs.txt201 vs block devices, I/O access, hardware interrupts, DMA, access to
Dkmemcheck.txt208 In fact, this option may also be used for fine-grained control over SLUB vs.
Dpinctrl.txt555 expect pinmux drivers to present *all* possible function vs pin group mappings
/linux-4.1.27/net/llc/
Dllc_c_ev.c507 const u8 vs = llc_sk(sk)->vS; in llc_conn_ev_rx_zzz_cmd_pbit_set_x_inval_nr() local
512 nr != vs && llc_util_nr_inside_tx_window(sk, nr)) { in llc_conn_ev_rx_zzz_cmd_pbit_set_x_inval_nr()
514 __func__, llc_sk(sk)->state, vs, nr); in llc_conn_ev_rx_zzz_cmd_pbit_set_x_inval_nr()
525 const u8 vs = llc_sk(sk)->vS; in llc_conn_ev_rx_zzz_rsp_fbit_set_x_inval_nr() local
530 nr != vs && llc_util_nr_inside_tx_window(sk, nr)) { in llc_conn_ev_rx_zzz_rsp_fbit_set_x_inval_nr()
533 __func__, llc_sk(sk)->state, vs, nr); in llc_conn_ev_rx_zzz_rsp_fbit_set_x_inval_nr()
Dllc_pdu.c221 u8 f_bit, u8 vs, u8 vr, u8 vzyxw) in llc_pdu_init_as_frmr_rsp() argument
235 FRMR_INFO_SET_Vs(frmr_info, vs); in llc_pdu_init_as_frmr_rsp()
/linux-4.1.27/include/net/
Dllc_pdu.h166 #define FRMR_INFO_SET_Vs(info,vs) (info->curr_ssv = (((u8) vs) << 1)) argument
424 u8 f_bit, u8 vs, u8 vr, u8 vzyxw);
Dgeneve.h87 void geneve_sock_release(struct geneve_sock *vs);
Dlapb.h88 unsigned short vs, vr, va; member
Dvxlan.h146 void vxlan_sock_release(struct vxlan_sock *vs);
Drose.h137 unsigned short vs, vr, va, vl; member
Dnetrom.h70 unsigned short vs, vr, va, vl; member
Dx25.h153 unsigned short vs, vr, va, vl; member
Dax25.h233 unsigned short vs, vr, va; member
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
Drfbi.c575 int hs, vs; in rfbi_setup_te() local
580 vs = ps_to_rfbi_ticks(vs_pulse_time, 1); in rfbi_setup_te()
587 if (vs < min) in rfbi_setup_te()
589 if (vs == hs) in rfbi_setup_te()
593 mode, hs, vs, hs_pol_inv, vs_pol_inv); in rfbi_setup_te()
596 rfbi_write_reg(RFBI_VSYNC_WIDTH, vs); in rfbi_setup_te()
Ddispc.c3007 bool onoff, rf, ipc, vs, hs, de; in _dispc_mgr_set_lcd_timings() local
3021 vs = true; in _dispc_mgr_set_lcd_timings()
3024 vs = false; in _dispc_mgr_set_lcd_timings()
3082 FLD_VAL(vs, 12, 12); in _dispc_mgr_set_lcd_timings()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/
Dctxnv40.c554 int vs, vs_nr, vs_len, vs_nr_b0, vs_nr_b1, b0_offset, b1_offset; in nv40_gr_construct_shader() local
588 for (vs = 0; vs < vs_nr; vs++, offset += vs_len) { in nv40_gr_construct_shader()
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
Ddp.h29 nvbios_dpcfg_match(struct nvkm_bios *, u16 outp, u8 pc, u8 vs, u8 pe,
/linux-4.1.27/drivers/staging/media/lirc/
DTODO2 (see drivers/media/IR/mceusb.c vs. lirc_mceusb.c in lirc cvs for an
/linux-4.1.27/Documentation/scheduler/
Dsched-arch.txt68 ia64 - is safe_halt call racy vs interrupts? (does it sleep?) (See #4a)
70 sh64 - Is sleeping racy vs interrupts? (See #4a)
/linux-4.1.27/drivers/video/fbdev/matrox/
Dmatroxfb_misc.c192 unsigned int vd, vs, ve, vt, lc; in matroxfb_vgaHWinit() local
268 vs = m->VSyncStart - 1; in matroxfb_vgaHWinit()
298 ((vs & 0xC00) >> 5) | in matroxfb_vgaHWinit()
312 ((vs & 0x100) >> 6) | in matroxfb_vgaHWinit()
317 ((vs & 0x200) >> 2); in matroxfb_vgaHWinit()
325 hw->CRTC[16] = vs /* & 0xFF */; in matroxfb_vgaHWinit()
Dmatroxfb_base.c270 struct matrox_vsync *vs; in matroxfb_wait_for_sync() local
276 vs = &minfo->crtc1.vsync; in matroxfb_wait_for_sync()
282 vs = &minfo->crtc2.vsync; in matroxfb_wait_for_sync()
292 cnt = vs->cnt; in matroxfb_wait_for_sync()
293 ret = wait_event_interruptible_timeout(vs->wait, cnt != vs->cnt, HZ/10); in matroxfb_wait_for_sync()
/linux-4.1.27/include/uapi/linux/
Dax25.h106 unsigned int vs, vr, va, vs_max; member
Dnvme.h85 __u8 vs[1024]; member
128 __u8 vs[3712]; member
/linux-4.1.27/arch/powerpc/kernel/
Dprom_init.c330 long vs; in prom_printf() local
362 vs = va_arg(args, int); in prom_printf()
363 if (vs < 0) { in prom_printf()
365 vs = -vs; in prom_printf()
367 prom_print_dec(vs); in prom_printf()
383 vs = va_arg(args, long); in prom_printf()
384 if (vs < 0) { in prom_printf()
386 vs = -vs; in prom_printf()
388 prom_print_dec(vs); in prom_printf()
/linux-4.1.27/Documentation/vm/
D00-INDEX4 - An explanation from Linus about tsk->active_mm vs tsk->mm.
Dactive_mm.txt11 > Is there a brief description someplace on how "mm" vs. "active_mm" in
Dunevictable-lru.txt387 do_mlock[all]() - as the mlock() and mlockall() system calls with the unlock vs
/linux-4.1.27/include/linux/
Dnvme.h25 __u32 vs; /* Version */ member
Dhugetlb.h125 #define follow_hugetlb_page(m,v,p,vs,a,b,i,w) ({ BUG(); 0; }) argument
/linux-4.1.27/arch/arm/boot/dts/
Dtegra114-tn7.dts118 regulator-name = "vs-pmu-1v8";
126 regulator-name = "vs-sys-2v9";
Dlpc32xx.dtsi265 * TSC vs. ADC: Since those two share the same
/linux-4.1.27/drivers/gpu/drm/radeon/
Dr600_blit.c162 u32 *vs, *ps; in set_shaders() local
168 vs = (u32 *) ((char *)dev->agp_buffer_map->handle + dev_priv->blit_vb->offset); in set_shaders()
172 vs[i] = cpu_to_le32(r6xx_vs[i]); in set_shaders()
/linux-4.1.27/tools/testing/selftests/rcutorture/bin/
Dkvm-test-1-run.sh219 echo "!!! PID $qemu_pid hung at $kruntime vs. $seconds seconds" >> $resdir/Warnings 2>&1
/linux-4.1.27/Documentation/zh_CN/
Dgpio.txt424 (2 mA vs 20 mA)和电压(1.8V vs 3.3V)是平台特定问题,就像模型一样在
/linux-4.1.27/drivers/video/fbdev/intelfb/
Dintelfbhw.c1053 u32 *vs, *vb, *vt, *hs, *hb, *ht, *ss, *pipe_conf; in intelfbhw_mode_to_hw() local
1069 vs = &hw->vsync_b; in intelfbhw_mode_to_hw()
1081 vs = &hw->vsync_a; in intelfbhw_mode_to_hw()
1247 *vs = (vsync_start << VSYNCSTART_SHIFT) | (vsync_end << VSYNCEND_SHIFT); in intelfbhw_mode_to_hw()
1285 const u32 *hs, *ht, *hb, *vs, *vt, *vb, *ss; in intelfbhw_program_mode() local
1313 vs = &hw->vsync_b; in intelfbhw_program_mode()
1337 vs = &hw->vsync_a; in intelfbhw_program_mode()
1427 OUTREG(vsync_reg, *vs); in intelfbhw_program_mode()
/linux-4.1.27/Documentation/hwmon/
Dmax166820 set; only two remote temperature inputs vs the four avaible on the other
Dds162163 readings. Be sure to have a high vs. low temperature limit gap of al least
Dw83791d135 Alarms bitmap vs. beep_mask bitmask
Dsysfs-interface277 Define the PWM vs temperature curve. Number of trip points is
285 Define the PWM vs temperature curve. Number of trip points is
Dit87236 This interface implements 4 temperature vs. PWM output trip points.
/linux-4.1.27/include/net/irda/
Dirlap.h175 __u8 vs; /* Next frame to be sent */ member
/linux-4.1.27/drivers/staging/iio/
DTODO29 1) Open question of userspace vs kernel space balance when
/linux-4.1.27/Documentation/devicetree/bindings/pci/
Dhost-generic-pci.txt18 depending on the layout of configuration space (CAM vs
/linux-4.1.27/Documentation/devicetree/bindings/soc/ti/
Dkeystone-navigator-dma.txt53 - ti,enable-all: Enable all DMA channels vs clients opening specific channels
/linux-4.1.27/Documentation/networking/
Dipvs-sysctl.txt1 /proc/sys/net/ipv4/vs/* Variables:
124 is controlled by the /proc/sys/net/ipv4/vs/am_droprate.
Dipvlan.txt52 5. What to choose (macvlan vs. ipvlan)?
Dnetdev-FAQ.txt85 Q: How do I indicate which tree (net vs. net-next) my patch should be in?
149 think it has been overlooked, vs. having been considered and rejected.
Dde4x5.txt128 (runs the service routine with interrupts turned off) vs. this card
D00-INDEX122 - Per-inode explanation of the /proc/sys/net/ipv4/vs interface.
Deql.txt253 very wide apart (57600 vs. 14400) the "faster" modem received all
Dfilter.txt1091 seccomp vs socket filters have different security restrictions for classic BPF.
Dbonding.txt419 vs. just updating a switch or set of switches (which
778 ioctls vs. netif_carrier_ok() to determine the link
/linux-4.1.27/arch/powerpc/include/asm/
Dkvm_book3s.h34 bool vs : 1; member
/linux-4.1.27/Documentation/frv/
Dkernel-ABI.txt7 consistent between modules vs core, and MMU vs no-MMU.
/linux-4.1.27/arch/powerpc/kvm/
Dbook3s_32_mmu.c162 if (!bat->vs) in kvmppc_mmu_book3s_32_xlate_bat()
Dbook3s_emulate.c328 bat->vs = (val & 2) ? 1 : 0; in kvmppc_set_bat()
/linux-4.1.27/Documentation/infiniband/
Dipoib.txt30 Datagram vs Connected modes
/linux-4.1.27/arch/arm/include/asm/
Dassembler.h433 .irp c,,eq,ne,cs,cc,mi,pl,vs,vc,hi,ls,ge,lt,gt,le,hs,lo
/linux-4.1.27/drivers/media/v4l2-core/
Dv4l2-ioctl.c116 int v4l2_video_std_construct(struct v4l2_standard *vs, in v4l2_video_std_construct() argument
119 vs->id = id; in v4l2_video_std_construct()
120 v4l2_video_std_frame_period(id, &vs->frameperiod); in v4l2_video_std_construct()
121 vs->framelines = (id & V4L2_STD_525_60) ? 525 : 625; in v4l2_video_std_construct()
122 strlcpy(vs->name, name, sizeof(vs->name)); in v4l2_video_std_construct()
/linux-4.1.27/include/media/
Dv4l2-ioctl.h304 extern int v4l2_video_std_construct(struct v4l2_standard *vs,
/linux-4.1.27/Documentation/filesystems/
D00-INDEX91 - info on file locking implementations, flock() vs. fcntl(), etc.
Dgfs2-glocks.txt187 node is able to use a glock vs. time that the rest of the
Dramfs-rootfs-initramfs.txt286 And spawned a second thread (specifically on tar vs cpio), starting here:
Dxfs-delayed-logging-design.txt408 vs two dirty cachelines except for the fact I've seen upwards of 80,000 log
/linux-4.1.27/arch/m68k/fpsp040/
Dx_unfl.S211 | Differentiate between store to memory vs. store to register
Dres_func.S1914 | ;vs norm bias
/linux-4.1.27/arch/arm/mach-omap2/
Dsram243x.S47 mov r12, r2 @ capture CS1 vs CS0
Dsram242x.S47 mov r12, r2 @ capture CS1 vs CS0
/linux-4.1.27/Documentation/locking/
Dspinlocks.txt17 worry about UP vs SMP issues: the spinlocks work correctly under both.
Dww-mutex-design.txt11 domains (for example VRAM vs system memory), and so on. And with
/linux-4.1.27/arch/mips/include/uapi/asm/
Dinst.h608 __BITFIELD_FIELD(unsigned int vs : 5,
/linux-4.1.27/arch/arc/
DKconfig262 Choose between 8k vs 16k
/linux-4.1.27/Documentation/PCI/
DPCIEBUS-HOWTO.txt66 5. Configuring the PCI Express Port Bus Driver vs. Service Drivers
/linux-4.1.27/Documentation/input/
Dxpad.txt113 (5 pins vs. 4 on standard USB 1.0 connectors).
/linux-4.1.27/net/netfilter/ipvs/
DKconfig42 level in /proc/sys/net/ipv4/vs/debug_level
/linux-4.1.27/Documentation/thermal/
Dintel_powerclamp.txt17 - Power vs Performance
/linux-4.1.27/tools/power/cpupower/po/
Dde.po683 " -b, --perf-bias [VAL] Sets CPU's power vs performance policy on some\n"
738 " -b, --perf-bias Gets CPU's power vs performance policy on some\n"
Dcs.po672 " -b, --perf-bias [VAL] Sets CPU's power vs performance policy on some\n"
727 " -b, --perf-bias Gets CPU's power vs performance policy on some\n"
Dit.po680 " -b, --perf-bias [VAL] Sets CPU's power vs performance policy on some\n"
735 " -b, --perf-bias Gets CPU's power vs performance policy on some\n"
Dfr.po672 " -b, --perf-bias [VAL] Sets CPU's power vs performance policy on some\n"
727 " -b, --perf-bias Gets CPU's power vs performance policy on some\n"
Dpt.po682 " -b, --perf-bias [VAL] Sets CPU's power vs performance policy on some\n"
737 " -b, --perf-bias Gets CPU's power vs performance policy on some\n"
/linux-4.1.27/drivers/net/ethernet/myricom/myri10ge/
Dmyri10ge.c3554 int vs = mgp->vendor_specific_offset; in myri10ge_read_reboot() local
3558 pci_write_config_byte(pdev, vs + 0x10, 0x3); in myri10ge_read_reboot()
3561 pci_write_config_dword(pdev, vs + 0x18, 0xfffffff0); in myri10ge_read_reboot()
3562 pci_read_config_dword(pdev, vs + 0x14, &reboot); in myri10ge_read_reboot()
/linux-4.1.27/arch/sh/lib/
Dmemcpy-sh4.S196 ! cycle counts for differnet sizes using byte-at-a-time vs. optimised):
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-pci91 the file is in (msi vs. msix)
/linux-4.1.27/drivers/block/
Dnvme-scsi.c799 if (readl(&dev->bar->vs) >= NVME_VS(1, 1)) { in nvme_trans_device_id_page()
813 if (readl(&dev->bar->vs) >= NVME_VS(1, 2)) { in nvme_trans_device_id_page()
Dnvme-core.c2319 (pdev->device == 0x0953) && ctrl->vs[3]) { in nvme_dev_add()
2322 dev->stripe_size = 1 << (ctrl->vs[3] + shift); in nvme_dev_add()
/linux-4.1.27/drivers/media/usb/pvrusb2/
Dpvrusb2-hdw.c2906 v4l2_std_id vs; in pvr2_subdev_update() local
2907 vs = hdw->std_mask_cur; in pvr2_subdev_update()
2909 video, s_std, vs); in pvr2_subdev_update()
/linux-4.1.27/Documentation/gpio/
Dgpio-legacy.txt498 Likewise drive strength (2 mA vs 20 mA) and voltage (1.8V vs 3.3V) is a
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Didle-states.txt141 Graph 1: Energy vs time example
/linux-4.1.27/Documentation/usb/
Dusb-serial.txt162 parity, 7 vs 8 bits per char, 1 or 2 stop bits
/linux-4.1.27/Documentation/scsi/
DChangeLog.ncr53c8xx320 - Rewrite the TARGET vs LUN capabilities management.
DChangeLog.lpfc393 * Small Makefile cleanup - Remove remnants of 2.4 vs. 2.6
1810 * Clean up the 2.6 vs 2.4 #if blocks.
/linux-4.1.27/Documentation/RCU/
DRTFP.txt977 ,Title="{RCU} vs. Locking Performance on Different {CPUs}"
2639 RCU-protected hash tables, barriers vs. read-side traversal order.
/linux-4.1.27/Documentation/filesystems/cifs/
DCHANGES276 vs. rename race which could cause each to hang. Return . and .. even
/linux-4.1.27/Documentation/security/
Dkeys.txt879 prevent access vs modification races. See the section "Notes on accessing
/linux-4.1.27/Documentation/block/
Dbiodoc.txt266 control (high/med/low) over the priority of an i/o request vs other pending
/linux-4.1.27/
DMAINTAINERS5347 M: Wensong Zhang <wensong@linux-vs.org>