Home
last modified time | relevance | path

Searched refs:hp (Results 1 – 151 of 151) sorted by relevance

/linux-4.1.27/drivers/tty/hvc/
Dhvc_console.c106 struct hvc_struct *hp; in hvc_get_by_index() local
111 list_for_each_entry(hp, &hvc_structs, next) { in hvc_get_by_index()
112 spin_lock_irqsave(&hp->lock, flags); in hvc_get_by_index()
113 if (hp->index == index) { in hvc_get_by_index()
114 tty_port_get(&hp->port); in hvc_get_by_index()
115 spin_unlock_irqrestore(&hp->lock, flags); in hvc_get_by_index()
117 return hp; in hvc_get_by_index()
119 spin_unlock_irqrestore(&hp->lock, flags); in hvc_get_by_index()
121 hp = NULL; in hvc_get_by_index()
124 return hp; in hvc_get_by_index()
[all …]
Dhvsi.c100 static int (*hvsi_wait)(struct hvsi_struct *hp, int state);
112 static inline int is_console(struct hvsi_struct *hp) in is_console() argument
114 return hp->flags & HVSI_CONSOLE; in is_console()
117 static inline int is_open(struct hvsi_struct *hp) in is_open() argument
120 return (hp->state == HVSI_OPEN) in is_open()
121 || (hp->state == HVSI_WAIT_FOR_MCTRL_RESPONSE); in is_open()
124 static inline void print_state(struct hvsi_struct *hp) in print_state() argument
135 const char *name = (hp->state < ARRAY_SIZE(state_names)) in print_state()
136 ? state_names[hp->state] : "UNKNOWN"; in print_state()
138 pr_debug("hvsi%i: state = %s\n", hp->index, name); in print_state()
[all …]
Dhvc_tile.c81 static int hvc_tile_notifier_add_irq(struct hvc_struct *hp, int irq) in hvc_tile_notifier_add_irq() argument
87 rc = notifier_add_irq(hp, irq); in hvc_tile_notifier_add_irq()
97 notifier_del_irq(hp, irq); in hvc_tile_notifier_add_irq()
102 static void hvc_tile_notifier_del_irq(struct hvc_struct *hp, int irq) in hvc_tile_notifier_del_irq() argument
109 notifier_del_irq(hp, irq); in hvc_tile_notifier_del_irq()
112 static void hvc_tile_notifier_hangup_irq(struct hvc_struct *hp, int irq) in hvc_tile_notifier_hangup_irq() argument
114 hvc_tile_notifier_del_irq(hp, irq); in hvc_tile_notifier_hangup_irq()
132 struct hvc_struct *hp; in hvc_tile_probe() local
141 hp = hvc_alloc(0, tile_hvc_irq, &hvc_tile_get_put_ops, 128); in hvc_tile_probe()
142 if (IS_ERR(hp)) { in hvc_tile_probe()
[all …]
Dhvc_console.h71 int (*notifier_add)(struct hvc_struct *hp, int irq);
72 void (*notifier_del)(struct hvc_struct *hp, int irq);
73 void (*notifier_hangup)(struct hvc_struct *hp, int irq);
76 int (*tiocmget)(struct hvc_struct *hp);
77 int (*tiocmset)(struct hvc_struct *hp, unsigned int set, unsigned int clear);
80 void (*dtr_rts)(struct hvc_struct *hp, int raise);
91 extern int hvc_remove(struct hvc_struct *hp);
94 int hvc_poll(struct hvc_struct *hp);
98 extern void __hvc_resize(struct hvc_struct *hp, struct winsize ws);
100 static inline void hvc_resize(struct hvc_struct *hp, struct winsize ws) in hvc_resize() argument
[all …]
Dhvc_irq.c23 int notifier_add_irq(struct hvc_struct *hp, int irq) in notifier_add_irq() argument
28 hp->irq_requested = 0; in notifier_add_irq()
32 "hvc_console", hp); in notifier_add_irq()
34 hp->irq_requested = 1; in notifier_add_irq()
38 void notifier_del_irq(struct hvc_struct *hp, int irq) in notifier_del_irq() argument
40 if (!hp->irq_requested) in notifier_del_irq()
42 free_irq(irq, hp); in notifier_del_irq()
43 hp->irq_requested = 0; in notifier_del_irq()
46 void notifier_hangup_irq(struct hvc_struct *hp, int irq) in notifier_hangup_irq() argument
48 notifier_del_irq(hp, irq); in notifier_hangup_irq()
Dhvc_opal.c94 static int hvc_opal_hvsi_open(struct hvc_struct *hp, int data) in hvc_opal_hvsi_open() argument
96 struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno]; in hvc_opal_hvsi_open()
99 pr_devel("HVSI@%x: do open !\n", hp->vtermno); in hvc_opal_hvsi_open()
101 rc = notifier_add_irq(hp, data); in hvc_opal_hvsi_open()
105 return hvsilib_open(&pv->hvsi, hp); in hvc_opal_hvsi_open()
108 static void hvc_opal_hvsi_close(struct hvc_struct *hp, int data) in hvc_opal_hvsi_close() argument
110 struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno]; in hvc_opal_hvsi_close()
112 pr_devel("HVSI@%x: do close !\n", hp->vtermno); in hvc_opal_hvsi_close()
114 hvsilib_close(&pv->hvsi, hp); in hvc_opal_hvsi_close()
116 notifier_del_irq(hp, data); in hvc_opal_hvsi_close()
[all …]
Dhvc_vio.c163 static int hvterm_hvsi_open(struct hvc_struct *hp, int data) in hvterm_hvsi_open() argument
165 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_open()
170 rc = notifier_add_irq(hp, data); in hvterm_hvsi_open()
174 return hvsilib_open(&pv->hvsi, hp); in hvterm_hvsi_open()
177 static void hvterm_hvsi_close(struct hvc_struct *hp, int data) in hvterm_hvsi_close() argument
179 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_close()
183 hvsilib_close(&pv->hvsi, hp); in hvterm_hvsi_close()
185 notifier_del_irq(hp, data); in hvterm_hvsi_close()
188 void hvterm_hvsi_hangup(struct hvc_struct *hp, int data) in hvterm_hvsi_hangup() argument
190 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_hangup()
[all …]
Dhvc_udbg.c68 struct hvc_struct *hp; in hvc_udbg_init() local
75 hp = hvc_alloc(0, 0, &hvc_udbg_ops, 16); in hvc_udbg_init()
76 if (IS_ERR(hp)) in hvc_udbg_init()
77 return PTR_ERR(hp); in hvc_udbg_init()
79 hvc_udbg_dev = hp; in hvc_udbg_init()
Dhvc_rtas.c81 struct hvc_struct *hp; in hvc_rtas_init() local
97 hp = hvc_alloc(hvc_rtas_cookie, 0, &hvc_rtas_get_put_ops, 16); in hvc_rtas_init()
98 if (IS_ERR(hp)) in hvc_rtas_init()
99 return PTR_ERR(hp); in hvc_rtas_init()
101 hvc_rtas_dev = hp; in hvc_rtas_init()
Dhvc_beat.c111 struct hvc_struct *hp; in hvc_beat_init() local
116 hp = hvc_alloc(0, 0, &hvc_beat_get_put_ops, 16); in hvc_beat_init()
117 if (IS_ERR(hp)) in hvc_beat_init()
118 return PTR_ERR(hp); in hvc_beat_init()
119 hvc_beat_dev = hp; in hvc_beat_init()
Dhvsi_lib.c373 int hvsilib_open(struct hvsi_priv *pv, struct hvc_struct *hp) in hvsilib_open() argument
378 pv->tty = tty_port_tty_get(&hp->port); in hvsilib_open()
385 void hvsilib_close(struct hvsi_priv *pv, struct hvc_struct *hp) in hvsilib_close() argument
396 spin_lock_irqsave(&hp->lock, flags); in hvsilib_close()
398 spin_unlock_irqrestore(&hp->lock, flags); in hvsilib_close()
Dhvc_iucv.c489 static int hvc_iucv_notifier_add(struct hvc_struct *hp, int id) in hvc_iucv_notifier_add() argument
635 static void hvc_iucv_notifier_hangup(struct hvc_struct *hp, int id) in hvc_iucv_notifier_hangup() argument
669 static void hvc_iucv_dtr_rts(struct hvc_struct *hp, int raise) in hvc_iucv_dtr_rts() argument
680 priv = hvc_iucv_get_private(hp->vtermno); in hvc_iucv_dtr_rts()
716 static void hvc_iucv_notifier_del(struct hvc_struct *hp, int id) in hvc_iucv_notifier_del() argument
/linux-4.1.27/drivers/net/ethernet/sun/
Dsunhme.c110 static __inline__ void tx_add_log(struct happy_meal *hp, unsigned int a, unsigned int s) in tx_add_log() argument
118 tlp->tx_new = hp->tx_new; in tx_add_log()
119 tlp->tx_old = hp->tx_old; in tx_add_log()
138 static __inline__ void tx_dump_ring(struct happy_meal *hp) in tx_dump_ring() argument
140 struct hmeal_init_block *hb = hp->happy_block; in tx_dump_ring()
154 #define tx_add_log(hp, a, s) do { } while(0) argument
156 #define tx_dump_ring(hp) do { } while(0) argument
304 static inline u32 hme_read_desc32(struct happy_meal *hp, hme32 *p) in hme_read_desc32() argument
321 static void BB_PUT_BIT(struct happy_meal *hp, void __iomem *tregs, int bit) in BB_PUT_BIT() argument
323 hme_write32(hp, tregs + TCVR_BBDATA, bit); in BB_PUT_BIT()
[all …]
Dsunhme.h364 #define TX_BUFFS_AVAIL(hp) \ argument
365 (((hp)->tx_old <= (hp)->tx_new) ? \
366 (hp)->tx_old + (TX_RING_SIZE - 1) - (hp)->tx_new : \
367 (hp)->tx_old - (hp)->tx_new - 1)
Dsunvnet.c908 struct hlist_head *hp = &vp->port_hash[hash]; in __tx_port_find() local
911 hlist_for_each_entry_rcu(port, hp, hash) { in __tx_port_find()
1850 static struct vnet *vnet_find_parent(struct mdesc_handle *hp, in vnet_find_parent() argument
1856 mdesc_for_each_arc(a, hp, port_node, MDESC_ARC_TYPE_BACK) { in vnet_find_parent()
1857 u64 target = mdesc_arc_target(hp, a); in vnet_find_parent()
1860 name = mdesc_get_property(hp, target, "name", NULL); in vnet_find_parent()
1864 local_mac = mdesc_get_property(hp, target, in vnet_find_parent()
1915 struct mdesc_handle *hp; in vnet_port_probe() local
1924 hp = mdesc_grab(); in vnet_port_probe()
1926 vp = vnet_find_parent(hp, vdev->mp); in vnet_port_probe()
[all …]
/linux-4.1.27/drivers/char/agp/
Dhp-agp.c79 struct _hp_private *hp = &hp_private; in hp_zx1_ioc_shared() local
89 hp->io_tlb_ps = readq(hp->ioc_regs+HP_ZX1_TCNFG); in hp_zx1_ioc_shared()
90 switch (hp->io_tlb_ps) { in hp_zx1_ioc_shared()
91 case 0: hp->io_tlb_shift = 12; break; in hp_zx1_ioc_shared()
92 case 1: hp->io_tlb_shift = 13; break; in hp_zx1_ioc_shared()
93 case 2: hp->io_tlb_shift = 14; break; in hp_zx1_ioc_shared()
94 case 3: hp->io_tlb_shift = 16; break; in hp_zx1_ioc_shared()
97 "configuration 0x%x\n", hp->io_tlb_ps); in hp_zx1_ioc_shared()
98 hp->gatt = NULL; in hp_zx1_ioc_shared()
99 hp->gatt_entries = 0; in hp_zx1_ioc_shared()
[all …]
DMakefile12 obj-$(CONFIG_AGP_HP_ZX1) += hp-agp.o
/linux-4.1.27/arch/sparc/kernel/
Dmdesc.c78 static void mdesc_handle_init(struct mdesc_handle *hp, in mdesc_handle_init() argument
82 BUG_ON(((unsigned long)&hp->mdesc) & (16UL - 1)); in mdesc_handle_init()
84 memset(hp, 0, handle_size); in mdesc_handle_init()
85 INIT_LIST_HEAD(&hp->list); in mdesc_handle_init()
86 hp->self_base = base; in mdesc_handle_init()
87 atomic_set(&hp->refcnt, 1); in mdesc_handle_init()
88 hp->handle_size = handle_size; in mdesc_handle_init()
94 struct mdesc_handle *hp; in mdesc_memblock_alloc() local
104 hp = NULL; in mdesc_memblock_alloc()
106 hp = __va(paddr); in mdesc_memblock_alloc()
[all …]
Dvio.c166 static void vio_fill_channel_info(struct mdesc_handle *hp, u64 mp, in vio_fill_channel_info() argument
171 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_FWD) { in vio_fill_channel_info()
176 target = mdesc_arc_target(hp, a); in vio_fill_channel_info()
178 irq = mdesc_get_property(hp, target, "tx-ino", NULL); in vio_fill_channel_info()
182 irq = mdesc_get_property(hp, target, "rx-ino", NULL); in vio_fill_channel_info()
188 chan_id = mdesc_get_property(hp, target, "id", NULL); in vio_fill_channel_info()
203 static struct vio_dev *vio_create_one(struct mdesc_handle *hp, u64 mp, in vio_create_one() argument
213 type = mdesc_get_property(hp, mp, "device-type", &tlen); in vio_create_one()
215 type = mdesc_get_property(hp, mp, "name", &tlen); in vio_create_one()
217 type = mdesc_node_name(hp, mp); in vio_create_one()
[all …]
Dsetup_64.c464 struct mdesc_handle *hp; in mdesc_cpu_hwcap_list() local
470 hp = mdesc_grab(); in mdesc_cpu_hwcap_list()
471 if (!hp) in mdesc_cpu_hwcap_list()
474 pn = mdesc_node_by_name(hp, MDESC_NODE_NULL, "cpu"); in mdesc_cpu_hwcap_list()
478 prop = mdesc_get_property(hp, pn, "hwcap-list", &len); in mdesc_cpu_hwcap_list()
504 mdesc_release(hp); in mdesc_cpu_hwcap_list()
Dds.c1164 struct mdesc_handle *hp; in ds_probe() local
1178 hp = mdesc_grab(); in ds_probe()
1179 val = mdesc_get_property(hp, vdev->mp, "id", NULL); in ds_probe()
1182 mdesc_release(hp); in ds_probe()
Dldc.c2319 struct mdesc_handle *hp; in ldc_init() local
2324 hp = mdesc_grab(); in ldc_init()
2325 if (!hp) in ldc_init()
2328 mp = mdesc_node_by_name(hp, MDESC_NODE_NULL, "platform"); in ldc_init()
2333 v = mdesc_get_property(hp, mp, "domaining-enabled", NULL); in ldc_init()
2354 mdesc_release(hp); in ldc_init()
/linux-4.1.27/net/netfilter/
Dxt_TPROXY.c257 struct tcphdr _hdr, *hp; in tproxy_handle_time_wait4() local
259 hp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_hdr), &_hdr); in tproxy_handle_time_wait4()
260 if (hp == NULL) { in tproxy_handle_time_wait4()
265 if (hp->syn && !hp->rst && !hp->ack && !hp->fin) { in tproxy_handle_time_wait4()
272 hp->source, lport ? lport : hp->dest, in tproxy_handle_time_wait4()
298 struct udphdr _hdr, *hp; in tproxy_tg4() local
301 hp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_hdr), &_hdr); in tproxy_tg4()
302 if (hp == NULL) in tproxy_tg4()
311 hp->source, hp->dest, in tproxy_tg4()
316 lport = hp->dest; in tproxy_tg4()
[all …]
Dxt_socket.c159 struct udphdr _hdr, *hp; in xt_socket_lookup_slow_v4() local
161 hp = skb_header_pointer(skb, ip_hdrlen(skb), in xt_socket_lookup_slow_v4()
163 if (hp == NULL) in xt_socket_lookup_slow_v4()
168 sport = hp->source; in xt_socket_lookup_slow_v4()
170 dport = hp->dest; in xt_socket_lookup_slow_v4()
348 struct udphdr _hdr, *hp; in xt_socket_lookup_slow_v6() local
350 hp = skb_header_pointer(skb, thoff, sizeof(_hdr), &_hdr); in xt_socket_lookup_slow_v6()
351 if (hp == NULL) in xt_socket_lookup_slow_v6()
355 sport = hp->source; in xt_socket_lookup_slow_v6()
357 dport = hp->dest; in xt_socket_lookup_slow_v6()
Dnf_conntrack_proto_udp.c43 const struct udphdr *hp; in udp_pkt_to_tuple() local
47 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr); in udp_pkt_to_tuple()
48 if (hp == NULL) in udp_pkt_to_tuple()
51 tuple->src.u.udp.port = hp->source; in udp_pkt_to_tuple()
52 tuple->dst.u.udp.port = hp->dest; in udp_pkt_to_tuple()
Dnf_conntrack_proto_udplite.c53 const struct udphdr *hp; in udplite_pkt_to_tuple() local
56 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr); in udplite_pkt_to_tuple()
57 if (hp == NULL) in udplite_pkt_to_tuple()
60 tuple->src.u.udp.port = hp->source; in udplite_pkt_to_tuple()
61 tuple->dst.u.udp.port = hp->dest; in udplite_pkt_to_tuple()
Dxt_HMARK.c64 union hmark_ports hp; in hmark_swap_ports() local
67 hp.b32 = (uports->b32 & info->port_mask.b32) | info->port_set.b32; in hmark_swap_ports()
68 src = ntohs(hp.b16.src); in hmark_swap_ports()
69 dst = ntohs(hp.b16.dst); in hmark_swap_ports()
Dnf_conntrack_proto_sctp.c147 const struct sctphdr *hp; in sctp_pkt_to_tuple() local
151 hp = skb_header_pointer(skb, dataoff, 8, &_hdr); in sctp_pkt_to_tuple()
152 if (hp == NULL) in sctp_pkt_to_tuple()
155 tuple->src.u.sctp.port = hp->source; in sctp_pkt_to_tuple()
156 tuple->dst.u.sctp.port = hp->dest; in sctp_pkt_to_tuple()
Dnf_conntrack_proto_tcp.c282 const struct tcphdr *hp; in tcp_pkt_to_tuple() local
286 hp = skb_header_pointer(skb, dataoff, 8, &_hdr); in tcp_pkt_to_tuple()
287 if (hp == NULL) in tcp_pkt_to_tuple()
290 tuple->src.u.tcp.port = hp->source; in tcp_pkt_to_tuple()
291 tuple->dst.u.tcp.port = hp->dest; in tcp_pkt_to_tuple()
/linux-4.1.27/net/ipv6/
Dexthdrs_core.c79 struct ipv6_opt_hdr _hdr, *hp; in ipv6_skip_exthdr() local
84 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr); in ipv6_skip_exthdr()
85 if (!hp) in ipv6_skip_exthdr()
102 hdrlen = (hp->hdrlen+2)<<2; in ipv6_skip_exthdr()
104 hdrlen = ipv6_optlen(hp); in ipv6_skip_exthdr()
106 nexthdr = hp->nexthdr; in ipv6_skip_exthdr()
210 struct ipv6_opt_hdr _hdr, *hp; in ipv6_find_hdr() local
220 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr); in ipv6_find_hdr()
221 if (!hp) in ipv6_find_hdr()
254 ((!ipv6_ext_hdr(hp->nexthdr)) || in ipv6_find_hdr()
[all …]
Dtcp_ipv6.c532 static int tcp_v6_md5_hash_pseudoheader(struct tcp_md5sig_pool *hp, in tcp_v6_md5_hash_pseudoheader() argument
539 bp = &hp->md5_blk.ip6; in tcp_v6_md5_hash_pseudoheader()
547 return crypto_hash_update(&hp->md5_desc, &sg, sizeof(*bp)); in tcp_v6_md5_hash_pseudoheader()
554 struct tcp_md5sig_pool *hp; in tcp_v6_md5_hash_hdr() local
557 hp = tcp_get_md5sig_pool(); in tcp_v6_md5_hash_hdr()
558 if (!hp) in tcp_v6_md5_hash_hdr()
560 desc = &hp->md5_desc; in tcp_v6_md5_hash_hdr()
564 if (tcp_v6_md5_hash_pseudoheader(hp, daddr, saddr, th->doff << 2)) in tcp_v6_md5_hash_hdr()
566 if (tcp_md5_hash_header(hp, th)) in tcp_v6_md5_hash_hdr()
568 if (tcp_md5_hash_key(hp, key)) in tcp_v6_md5_hash_hdr()
[all …]
/linux-4.1.27/drivers/pci/hotplug/
Dacpiphp.h119 struct acpi_hotplug_context hp; member
125 static inline struct acpiphp_context *to_acpiphp_context(struct acpi_hotplug_context *hp) in to_acpiphp_context() argument
127 return container_of(hp, struct acpiphp_context, hp); in to_acpiphp_context()
137 return func_to_context(func)->hp.self; in func_to_acpi_device()
146 struct acpi_hotplug_context hp; member
150 static inline struct acpiphp_root_context *to_acpiphp_root_context(struct acpi_hotplug_context *hp) in to_acpiphp_root_context() argument
152 return container_of(hp, struct acpiphp_root_context, hp); in to_acpiphp_root_context()
Dacpiphp_glue.c82 context->hp.notify = acpiphp_hotplug_notify; in acpiphp_init_context()
83 context->hp.fixup = acpiphp_post_dock_fixup; in acpiphp_init_context()
84 acpi_set_hp_context(adev, &context->hp); in acpiphp_init_context()
98 if (!adev->hp) in acpiphp_get_context()
101 context = to_acpiphp_context(adev->hp); in acpiphp_get_context()
120 context->hp.self->hp = NULL; in acpiphp_put_context()
382 adev->hp->notify = NULL; in cleanup_bridge()
383 adev->hp->fixup = NULL; in cleanup_bridge()
733 if (adev->hp) { in acpiphp_check_host_bridge()
734 bridge = to_acpiphp_root_context(adev->hp)->root_bridge; in acpiphp_check_host_bridge()
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/
Dptlrpc_internal.h120 struct ptlrpc_request *req, bool hp);
124 struct ptlrpc_request *req, bool hp);
127 ptlrpc_nrs_req_get_nolock0(struct ptlrpc_service_part *svcpt, bool hp,
131 ptlrpc_nrs_req_get_nolock(struct ptlrpc_service_part *svcpt, bool hp, in ptlrpc_nrs_req_get_nolock() argument
134 return ptlrpc_nrs_req_get_nolock0(svcpt, hp, false, force); in ptlrpc_nrs_req_get_nolock()
138 ptlrpc_nrs_req_peek_nolock(struct ptlrpc_service_part *svcpt, bool hp) in ptlrpc_nrs_req_peek_nolock() argument
140 return ptlrpc_nrs_req_get_nolock0(svcpt, hp, true, false); in ptlrpc_nrs_req_peek_nolock()
144 bool ptlrpc_nrs_req_pending_nolock(struct ptlrpc_service_part *svcpt, bool hp);
168 struct ptlrpc_nrs *nrs_svcpt2nrs(struct ptlrpc_service_part *svcpt, bool hp) in nrs_svcpt2nrs() argument
170 LASSERT(ergo(hp, nrs_svcpt_has_hp(svcpt))); in nrs_svcpt2nrs()
[all …]
Dnrs.c993 bool hp = false; in nrs_svcpt_cleanup_locked() local
998 nrs = nrs_svcpt2nrs(svcpt, hp); in nrs_svcpt_cleanup_locked()
1010 if (!hp && nrs_svcpt_has_hp(svcpt)) { in nrs_svcpt_cleanup_locked()
1011 hp = true; in nrs_svcpt_cleanup_locked()
1015 if (hp) in nrs_svcpt_cleanup_locked()
1068 bool hp = false; in nrs_policy_unregister_locked() local
1071 nrs = nrs_svcpt2nrs(svcpt, hp); in nrs_policy_unregister_locked()
1086 if (!hp && nrs_svc_has_hp(svc)) { in nrs_policy_unregister_locked()
1087 hp = true; in nrs_policy_unregister_locked()
1198 bool hp = false; in ptlrpc_nrs_policy_register() local
[all …]
Dlproc_ptlrpc.c489 bool hp = false; in ptlrpc_lprocfs_nrs_seq_show() local
518 nrs = nrs_svcpt2nrs(svcpt, hp); in ptlrpc_lprocfs_nrs_seq_show()
595 !hp ? "\nregular_requests:" : "high_priority_requests:"); in ptlrpc_lprocfs_nrs_seq_show()
610 if (!hp && nrs_svc_has_hp(svc)) { in ptlrpc_lprocfs_nrs_seq_show()
616 hp = true; in ptlrpc_lprocfs_nrs_seq_show()
/linux-4.1.27/drivers/scsi/
Dsg.c405 sg_io_hdr_t *hp; in sg_read() local
471 hp = &srp->header; in sg_read()
480 old_hdr->reply_len = (int) hp->timeout; in sg_read()
482 old_hdr->pack_id = hp->pack_id; in sg_read()
484 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0; in sg_read()
485 old_hdr->target_status = hp->masked_status; in sg_read()
486 old_hdr->host_status = hp->host_status; in sg_read()
487 old_hdr->driver_status = hp->driver_status; in sg_read()
488 if ((CHECK_CONDITION & hp->masked_status) || in sg_read()
489 (DRIVER_SENSE & hp->driver_status)) in sg_read()
[all …]
Dscsi_debug.c3802 struct Scsi_Host *hp; in scsi_debug_target_reset() local
3813 hp = sdp->host; in scsi_debug_target_reset()
3814 if (!hp) in scsi_debug_target_reset()
3816 sdbg_host = *(struct sdebug_host_info **)shost_priv(hp); in scsi_debug_target_reset()
3838 struct Scsi_Host * hp; in scsi_debug_bus_reset() local
3847 hp = sdp->host; in scsi_debug_bus_reset()
3848 if (hp) { in scsi_debug_bus_reset()
3849 sdbg_host = *(struct sdebug_host_info **)shost_priv(hp); in scsi_debug_bus_reset()
/linux-4.1.27/arch/ia64/
DMakefile41 ftp://ftp.hpl.hp.com/pub/linux-ia64/gas-030124.tar.gz)
58 drivers-$(CONFIG_IA64_HP_SIM) += arch/ia64/hp/sim/
59 drivers-$(CONFIG_IA64_HP_ZX1) += arch/ia64/hp/common/ arch/ia64/hp/zx1/
60 drivers-$(CONFIG_IA64_HP_ZX1_SWIOTLB) += arch/ia64/hp/common/ arch/ia64/hp/zx1/
61 drivers-$(CONFIG_IA64_GENERIC) += arch/ia64/hp/common/ arch/ia64/hp/zx1/ arch/ia64/hp/sim/ arch/ia6…
64 boot := arch/ia64/hp/sim/boot
DKconfig185 Ski-simulator For the HP simulator <http://www.hpl.hp.com/research/linux/ski/>
616 source "arch/ia64/hp/sim/Kconfig"
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-pci-devices-cciss4 Contact: iss_storagedev@hp.com
11 Contact: iss_storagedev@hp.com
18 Contact: iss_storagedev@hp.com
25 Contact: iss_storagedev@hp.com
32 Contact: iss_storagedev@hp.com
38 Contact: iss_storagedev@hp.com
45 Contact: iss_storagedev@hp.com
52 Contact: iss_storagedev@hp.com
59 Contact: iss_storagedev@hp.com
66 Contact: iss_storagedev@hp.com
[all …]
Dsysfs-devices-firmware_node11 Contact: Lance Ortiz <lance.ortiz@hp.com>
Dsysfs-class-scsi_host17 Contact: Stephen M. Cameron <scameron@beardog.cce.hp.com>
/linux-4.1.27/net/ipv6/netfilter/
Dip6t_ipv6header.c49 const struct ipv6_opt_hdr *hp; in ipv6header_mt6() local
67 hp = skb_header_pointer(skb, ptr, sizeof(_hdr), &_hdr); in ipv6header_mt6()
68 BUG_ON(hp == NULL); in ipv6header_mt6()
74 hdrlen = (hp->hdrlen + 2) << 2; in ipv6header_mt6()
76 hdrlen = ipv6_optlen(hp); in ipv6header_mt6()
99 nexthdr = hp->nexthdr; in ipv6header_mt6()
Dnf_log_ipv6.c78 const struct ipv6_opt_hdr *hp; in dump_ipv6_packet() local
80 hp = skb_header_pointer(skb, ptr, sizeof(_hdr), &_hdr); in dump_ipv6_packet()
81 if (hp == NULL) { in dump_ipv6_packet()
128 hdrlen = ipv6_optlen(hp); in dump_ipv6_packet()
161 hdrlen = (hp->hdrlen+2)<<2; in dump_ipv6_packet()
200 currenthdr = hp->nexthdr; in dump_ipv6_packet()
Dnf_conntrack_proto_icmpv6.c41 const struct icmp6hdr *hp; in icmpv6_pkt_to_tuple() local
44 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr); in icmpv6_pkt_to_tuple()
45 if (hp == NULL) in icmpv6_pkt_to_tuple()
47 tuple->dst.u.icmp.type = hp->icmp6_type; in icmpv6_pkt_to_tuple()
48 tuple->src.u.icmp.id = hp->icmp6_identifier; in icmpv6_pkt_to_tuple()
49 tuple->dst.u.icmp.code = hp->icmp6_code; in icmpv6_pkt_to_tuple()
/linux-4.1.27/Documentation/sound/alsa/
DHD-Audio-Models.txt60 no-primary-hp VAIO Z/VGC-LN51JGB workaround (for fixed speaker DAC)
100 hp HP nx6320
127 laptop 3-jack with hp-jack automute
145 laptop-hp Laptop config for some HP models (subdevice 30A5)
154 hp HP Spartan laptop
155 hp-dv6736 HP dv6736
156 hp-f700 HP Compaq Presario F700
163 hp-laptop HP laptops, e g G60
254 hp-m4 HP mini 1000
255 hp-dv5 HP dv series
[all …]
DHD-Audio.txt475 - hp_mic_detect (bool): enable/disable the hp/mic shared input for a
/linux-4.1.27/include/scsi/fc/
Dfc_fcoe.h57 #define FC_FCOE_DECAPS_VER(hp) ((hp)->fcoe_ver >> 4) argument
58 #define FC_FCOE_ENCAPS_VER(hp, ver) ((hp)->fcoe_ver = (ver) << 4) argument
/linux-4.1.27/net/sunrpc/
Dsvcauth.c141 struct auth_domain *hp; in auth_domain_lookup() local
148 hlist_for_each_entry(hp, head, hash) { in auth_domain_lookup()
149 if (strcmp(hp->name, name)==0) { in auth_domain_lookup()
150 kref_get(&hp->ref); in auth_domain_lookup()
152 return hp; in auth_domain_lookup()
Dcache.c57 struct cache_head **head, **hp; in sunrpc_cache_lookup() local
64 for (hp=head; *hp != NULL ; hp = &(*hp)->next) { in sunrpc_cache_lookup()
65 struct cache_head *tmp = *hp; in sunrpc_cache_lookup()
91 for (hp=head; *hp != NULL ; hp = &(*hp)->next) { in sunrpc_cache_lookup()
92 struct cache_head *tmp = *hp; in sunrpc_cache_lookup()
95 *hp = tmp->next; in sunrpc_cache_lookup()
/linux-4.1.27/Documentation/devicetree/bindings/sound/
Dsirf-audio.txt9 - hp-pa-gpios: Need to be present if the board need control external
13 - hp-switch-gpios: Need to be present if the board capable to detect jack
37 hp-pa-gpios = <&gpio 44 0>;
39 hp-switch-gpios = <&gpio 45 0>;
Dnvidia,tegra-audio-rt5677.txt30 - nvidia,hp-det-gpios : The GPIO that detects headphones are plugged in
31 - nvidia,hp-en-gpios : The GPIO that enables headphone amplifier
58 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(R, 7) GPIO_ACTIVE_HIGH>;
60 nvidia,hp-en-gpios = <&rt5677 1 GPIO_ACTIVE_HIGH>;
Dnvidia,tegra-audio-wm8903.txt27 - nvidia,hp-mute-gpios : The GPIO that mutes the headphones
28 - nvidia,hp-det-gpios : The GPIO that detect headphones are plugged in
53 nvidia,hp-det-gpios = <&gpio 178 0>; /* gpio PW2 */
Dnvidia,tegra-audio-rt5640.txt28 - nvidia,hp-det-gpios : The GPIO that detects headphones are plugged in
48 nvidia,hp-det-gpios = <&gpio 143 0>; /* GPIO PR7 */
Dnvidia,tegra-audio-max98090.txt28 - nvidia,hp-det-gpios : The GPIO that detect headphones are plugged in
Dsimple-card.txt20 - simple-audio-card,hp-det-gpio : Reference to GPIO that signals when
/linux-4.1.27/drivers/clk/pxa/
Dclk-pxa.c32 struct clk_fixed_factor hp; member
48 fix = &pclk->hp; in cken_recalc_rate()
90 pxa_clk->hp = clks[i].hp; in clk_pxa_cken_init()
Dclk-pxa.h77 struct clk_fixed_factor hp; member
88 .hp = { .mult = _mult_hp, .div = _div_hp }, \
/linux-4.1.27/arch/mips/sgi-ip22/
Dip28-berr.c415 struct hpc3_stat *hp = (struct hpc3_stat *)&hpc3 + i; in ip28_be_interrupt() local
417 (cpu_err_addr == hp->ndptr || cpu_err_addr == hp->cbp)) in ip28_be_interrupt()
420 (gio_err_addr == hp->ndptr || gio_err_addr == hp->cbp)) in ip28_be_interrupt()
424 struct hpc3_stat *hp = (struct hpc3_stat *)&hpc3 + i; in ip28_be_interrupt() local
427 CPHYSADDR(hp->addr), hp->ctrl, hp->ndptr, hp->cbp); in ip28_be_interrupt()
/linux-4.1.27/arch/sparc/mm/
Dtsb.c227 struct hv_tsb_descr *hp = &mm->context.tsb_descr[tsb_idx]; in setup_tsb_params() local
231 hp->pgsz_idx = HV_PGSZ_IDX_BASE; in setup_tsb_params()
235 hp->pgsz_idx = HV_PGSZ_IDX_HUGE; in setup_tsb_params()
241 hp->assoc = 1; in setup_tsb_params()
242 hp->num_ttes = tsb_bytes / 16; in setup_tsb_params()
243 hp->ctx_idx = 0; in setup_tsb_params()
246 hp->pgsz_mask = HV_PGSZ_MASK_BASE; in setup_tsb_params()
250 hp->pgsz_mask = HV_PGSZ_MASK_HUGE; in setup_tsb_params()
256 hp->tsb_base = tsb_paddr; in setup_tsb_params()
257 hp->resv = 0; in setup_tsb_params()
/linux-4.1.27/arch/powerpc/kvm/
Dbook3s_hv_rm_mmu.c460 __be64 *hp, *hptes[4]; in kvmppc_h_bulk_remove() local
490 hp = (__be64 *) (kvm->arch.hpt_virt + (pte_index << 4)); in kvmppc_h_bulk_remove()
492 if (!try_lock_hpte(hp, HPTE_V_HVLOCK)) { in kvmppc_h_bulk_remove()
495 while (!try_lock_hpte(hp, HPTE_V_HVLOCK)) in kvmppc_h_bulk_remove()
499 hp0 = be64_to_cpu(hp[0]); in kvmppc_h_bulk_remove()
516 hp[0] &= ~cpu_to_be64(HPTE_V_HVLOCK); in kvmppc_h_bulk_remove()
529 hp[0] = 0; in kvmppc_h_bulk_remove()
534 hp[0] &= ~cpu_to_be64(HPTE_V_VALID); in kvmppc_h_bulk_remove()
535 tlbrb[n] = compute_tlbie_rb(be64_to_cpu(hp[0]), in kvmppc_h_bulk_remove()
536 be64_to_cpu(hp[1]), pte_index); in kvmppc_h_bulk_remove()
[all …]
Dbook3s_64_mmu_hv.c873 unsigned long *hp; in kvm_test_age_rmapp() local
886 hp = (unsigned long *)(kvm->arch.hpt_virt + (i << 4)); in kvm_test_age_rmapp()
888 if (be64_to_cpu(hp[1]) & HPTE_R_R) in kvm_test_age_rmapp()
/linux-4.1.27/net/ipv4/netfilter/
Dnf_conntrack_proto_icmp.c35 const struct icmphdr *hp; in icmp_pkt_to_tuple() local
38 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr); in icmp_pkt_to_tuple()
39 if (hp == NULL) in icmp_pkt_to_tuple()
42 tuple->dst.u.icmp.type = hp->type; in icmp_pkt_to_tuple()
43 tuple->src.u.icmp.id = hp->un.echo.id; in icmp_pkt_to_tuple()
44 tuple->dst.u.icmp.code = hp->code; in icmp_pkt_to_tuple()
/linux-4.1.27/sound/soc/codecs/
Drt286.c302 static int rt286_jack_detect(struct rt286_priv *rt286, bool *hp, bool *mic) in rt286_jack_detect() argument
306 *hp = false; in rt286_jack_detect()
313 *hp = buf & 0x80000000; in rt286_jack_detect()
314 if (*hp) { in rt286_jack_detect()
358 *hp = buf & 0x80000000; in rt286_jack_detect()
365 if (!*hp) in rt286_jack_detect()
377 bool hp = false; in rt286_jack_detect_work() local
380 rt286_jack_detect(rt286, &hp, &mic); in rt286_jack_detect_work()
382 if (hp == true) in rt286_jack_detect_work()
1023 bool hp = false; in rt286_irq() local
[all …]
/linux-4.1.27/drivers/ata/
Dlibata-acpi.c42 struct acpi_hotplug_context hp; member
49 #define ata_hotplug_data(context) (container_of((context), struct ata_acpi_hotplug_context, hp)->da…
136 struct ata_device *dev = ata_hotplug_data(adev->hp).dev; in ata_acpi_dev_notify_dock()
143 ata_acpi_handle_hotplug(ata_hotplug_data(adev->hp).ap, NULL, event); in ata_acpi_ap_notify_dock()
168 ata_acpi_uevent(ata_hotplug_data(adev->hp).ap, NULL, event); in ata_acpi_ap_uevent()
173 struct ata_device *dev = ata_hotplug_data(adev->hp).dev; in ata_acpi_dev_uevent()
193 if (!adev || adev->hp) in ata_acpi_bind_port()
201 acpi_initialize_hp_context(adev, &context->hp, ata_acpi_ap_notify_dock, in ata_acpi_bind_port()
235 if (!adev || adev->hp) in ata_acpi_bind_dev()
243 acpi_initialize_hp_context(adev, &context->hp, ata_acpi_dev_notify_dock, in ata_acpi_bind_dev()
/linux-4.1.27/arch/sparc/include/asm/
Dmdesc.h39 const char *mdesc_node_name(struct mdesc_handle *hp, u64 node);
60 u64 mdesc_arc_target(struct mdesc_handle *hp, u64 arc);
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Drenesas,r8a73a4-cpg-clocks.txt18 "m1", "m2", "zx", "zs", and "hp".
32 "zx", "zs", "hp";
Drenesas,sh73a0-cpg-clocks.txt20 "m1", "m2", "z", "zx", and "hp".
34 "z", "zx", "hp";
Drenesas,r8a7740-cpg-clocks.txt18 "m1", "hp", "hpp", "usbp", "s", "zb", "m3", and "cp".
34 "i", "zg", "b", "m1", "hp",
/linux-4.1.27/drivers/sh/intc/
Dchip.c117 static struct intc_handle_int *intc_find_irq(struct intc_handle_int *hp, in intc_find_irq() argument
126 return bsearch(&key, hp, nr_hp, sizeof(*hp), intc_handle_int_cmp); in intc_find_irq()
Dcore.c78 struct intc_handle_int *hp; in intc_register_irq() local
132 hp = d->prio + d->nr_prio; in intc_register_irq()
133 hp->irq = irq; in intc_register_irq()
134 hp->handle = data[1]; in intc_register_irq()
141 hp->handle &= ~_INTC_MK(0x0f, 0, 0, 0, 0, 0); in intc_register_irq()
142 hp->handle |= _INTC_MK(REG_FN_ERR, 0, 0, 0, 0, 0); in intc_register_irq()
/linux-4.1.27/arch/powerpc/include/asm/
Dhvsi.h86 extern int hvsilib_open(struct hvsi_priv *pv, struct hvc_struct *hp);
87 extern void hvsilib_close(struct hvsi_priv *pv, struct hvc_struct *hp);
/linux-4.1.27/include/acpi/
Dacpi_bus.h371 struct acpi_hotplug_context *hp; member
413 struct acpi_hotplug_context *hp) in acpi_set_hp_context() argument
415 hp->self = adev; in acpi_set_hp_context()
416 adev->hp = hp; in acpi_set_hp_context()
420 struct acpi_hotplug_context *hp,
/linux-4.1.27/sound/soc/omap/
Dn810.c58 int hp = 0, line1l = 0; in n810_ext_control() local
64 hp = 1; in n810_ext_control()
78 if (hp) in n810_ext_control()
Drx51.c64 int hp = 0, hs = 0, tvout = 0; in rx51_ext_control() local
69 hp = 1; in rx51_ext_control()
74 hp = 1; in rx51_ext_control()
88 if (hp) in rx51_ext_control()
/linux-4.1.27/drivers/platform/x86/
DMakefile20 obj-$(CONFIG_HP_WIRELESS) += hp-wireless.o
21 obj-$(CONFIG_HP_WMI) += hp-wmi.o
DKconfig216 hp::hddprotect. For more information on the feature, refer to
231 be called hp-wireless.
244 be called hp-wmi.
/linux-4.1.27/net/ipv4/
Dtcp_ipv4.c1016 static int tcp_v4_md5_hash_pseudoheader(struct tcp_md5sig_pool *hp, in tcp_v4_md5_hash_pseudoheader() argument
1022 bp = &hp->md5_blk.ip4; in tcp_v4_md5_hash_pseudoheader()
1036 return crypto_hash_update(&hp->md5_desc, &sg, sizeof(*bp)); in tcp_v4_md5_hash_pseudoheader()
1042 struct tcp_md5sig_pool *hp; in tcp_v4_md5_hash_hdr() local
1045 hp = tcp_get_md5sig_pool(); in tcp_v4_md5_hash_hdr()
1046 if (!hp) in tcp_v4_md5_hash_hdr()
1048 desc = &hp->md5_desc; in tcp_v4_md5_hash_hdr()
1052 if (tcp_v4_md5_hash_pseudoheader(hp, daddr, saddr, th->doff << 2)) in tcp_v4_md5_hash_hdr()
1054 if (tcp_md5_hash_header(hp, th)) in tcp_v4_md5_hash_hdr()
1056 if (tcp_md5_hash_key(hp, key)) in tcp_v4_md5_hash_hdr()
[all …]
Dtcp.c2928 int tcp_md5_hash_header(struct tcp_md5sig_pool *hp, in tcp_md5_hash_header() argument
2941 err = crypto_hash_update(&hp->md5_desc, &sg, sizeof(hdr)); in tcp_md5_hash_header()
2946 int tcp_md5_hash_skb_data(struct tcp_md5sig_pool *hp, in tcp_md5_hash_skb_data() argument
2951 struct hash_desc *desc = &hp->md5_desc; in tcp_md5_hash_skb_data()
2976 if (tcp_md5_hash_skb_data(hp, frag_iter, 0)) in tcp_md5_hash_skb_data()
2983 int tcp_md5_hash_key(struct tcp_md5sig_pool *hp, const struct tcp_md5sig_key *key) in tcp_md5_hash_key() argument
2988 return crypto_hash_update(&hp->md5_desc, &sg, key->keylen); in tcp_md5_hash_key()
/linux-4.1.27/drivers/acpi/
Ddock.c118 if (!adev->hp) in dock_hotplug_event()
124 fixup = adev->hp->fixup; in dock_hotplug_event()
133 uevent = adev->hp->uevent; in dock_hotplug_event()
142 notify = adev->hp->notify; in dock_hotplug_event()
Dscan.c83 struct acpi_hotplug_context *hp, in acpi_initialize_hp_context() argument
88 hp->notify = notify; in acpi_initialize_hp_context()
89 hp->uevent = uevent; in acpi_initialize_hp_context()
90 acpi_set_hp_context(adev, hp); in acpi_initialize_hp_context()
678 notify = adev->hp ? adev->hp->notify : NULL; in acpi_device_hotplug()
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Draideng.txt53 "fsl,raideng-v1.0-hp-ring" or "fsl,raideng-v1.0-lp-ring"
75 compatible = "fsl,raideng-v1.0-job-ring", "fsl,raideng-v1.0-hp-ring";
/linux-4.1.27/arch/m68k/hp300/
DREADME.hp3004 The Linux/HP web page is at <http://www.tazenda.demon.co.uk/phil/linux-hp/>
/linux-4.1.27/arch/powerpc/boot/dts/fsl/
Dqoriq-raid1.0-0.dtsi50 compatible = "fsl,raideng-v1.0-job-ring", "fsl,raideng-v1.0-hp-ring";
72 compatible = "fsl,raideng-v1.0-job-ring", "fsl,raideng-v1.0-hp-ring";
/linux-4.1.27/drivers/parisc/
DREADME.dino13 ** http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?locale=en_US&prodTypeId=12454&prodSeri…
/linux-4.1.27/drivers/scsi/fcoe/
Dfcoe.c1602 struct fcoe_hdr *hp; in fcoe_xmit() local
1690 hp = (struct fcoe_hdr *)(eh + 1); in fcoe_xmit()
1691 memset(hp, 0, sizeof(*hp)); in fcoe_xmit()
1693 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER); in fcoe_xmit()
1694 hp->fcoe_sof = sof; in fcoe_xmit()
1791 struct fcoe_hdr *hp; in fcoe_recv_frame() local
1816 hp = (struct fcoe_hdr *) skb_network_header(skb); in fcoe_recv_frame()
1819 if (unlikely(FC_FCOE_DECAPS_VER(hp) != FC_FCOE_VER)) { in fcoe_recv_frame()
1825 "%x\n", FC_FCOE_DECAPS_VER(hp), in fcoe_recv_frame()
1839 fr_sof(fp) = hp->fcoe_sof; in fcoe_recv_frame()
/linux-4.1.27/Documentation/watchdog/
Dhpwdt.txt6 Thomas Mingarelli <thomas.mingarelli@hp.com>
95 (thomas.mingarelli@hp.com)
/linux-4.1.27/drivers/staging/lustre/lustre/llite/
Ddir.c1837 struct hsm_progress hp; in ll_dir_ioctl() local
1839 if (copy_from_user(&hp, (void *)arg, sizeof(hp))) in ll_dir_ioctl()
1842 hpk.hpk_fid = hp.hp_fid; in ll_dir_ioctl()
1843 hpk.hpk_cookie = hp.hp_cookie; in ll_dir_ioctl()
1844 hpk.hpk_extent = hp.hp_extent; in ll_dir_ioctl()
1845 hpk.hpk_flags = hp.hp_flags; in ll_dir_ioctl()
1846 hpk.hpk_errval = hp.hp_errval; in ll_dir_ioctl()
/linux-4.1.27/Documentation/filesystems/
Dufs.txt34 hp used in HP-UX
Dudf.txt7 please report them to linux_udf@hpesjro.fc.hp.com, which is the
Dbefs.txt26 <http://hp.vector.co.jp/authors/VA008030/bfs/>
/linux-4.1.27/arch/arm/boot/dts/
Dtegra20-plutux.dts54 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
Dtegra20-tec.dts62 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
Dtegra20-medcom-wide.dts82 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
Dkirkwood-t5325.dts21 compatible = "hp,t5325", "marvell,kirkwood-88f6281", "marvell,kirkwood";
Dtegra20-paz00.dts590 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
Dtegra30-cardhu.dtsi610 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
Dtegra124-nyan.dtsi683 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(I, 7) GPIO_ACTIVE_HIGH>;
Dtegra20-ventana.dts691 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
Dr8a7740.dtsi468 "i", "zg", "b", "m1", "hp",
Dr8a7794.dtsi453 clock-output-names = "hp";
Dtegra20-harmony.dts765 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
Dr8a73a4.dtsi505 "zx", "zs", "hp";
Dsh73a0.dtsi588 "z", "zx", "hp";
Dtegra20-seaboard.dts917 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(X, 1) GPIO_ACTIVE_HIGH>;
Dtegra114-dalmore.dts1280 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(R, 7) GPIO_ACTIVE_HIGH>;
Dr8a7790.dtsi984 clock-output-names = "hp";
Dr8a7791.dtsi990 clock-output-names = "hp";
Dtegra124-jetson-tk1.dts1898 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(R, 7) GPIO_ACTIVE_LOW>;
Dtegra30-beaver.dts2097 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
/linux-4.1.27/drivers/block/
Dsunvdc.c865 struct mdesc_handle *hp; in vdc_port_probe() local
872 hp = mdesc_grab(); in vdc_port_probe()
902 ldc_timeout = mdesc_get_property(hp, vdev->mp, "vdc-timeout", NULL); in vdc_port_probe()
933 mdesc_release(hp); in vdc_port_probe()
947 mdesc_release(hp); in vdc_port_probe()
/linux-4.1.27/drivers/net/ethernet/
DMakefile37 obj-$(CONFIG_NET_VENDOR_HP) += hp/
DKconfig74 source "drivers/net/ethernet/hp/Kconfig"
/linux-4.1.27/drivers/scsi/bnx2fc/
Dbnx2fc_fcoe.c253 struct fcoe_hdr *hp; in bnx2fc_xmit() local
365 hp = (struct fcoe_hdr *)(eh + 1); in bnx2fc_xmit()
366 memset(hp, 0, sizeof(*hp)); in bnx2fc_xmit()
368 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER); in bnx2fc_xmit()
369 hp->fcoe_sof = sof; in bnx2fc_xmit()
506 struct fcoe_hdr *hp; in bnx2fc_recv_frame() local
522 hp = (struct fcoe_hdr *) skb_network_header(skb); in bnx2fc_recv_frame()
530 fr_sof(fp) = hp->fcoe_sof; in bnx2fc_recv_frame()
/linux-4.1.27/tools/testing/selftests/memory-hotplug/
Dmem-on-off-test.sh120 while getopts e:hp:r: opt; do
/linux-4.1.27/Documentation/netlabel/
Dintroduction.txt3 Paul Moore, paul.moore@hp.com
Dcipso_ipv4.txt3 Paul Moore, paul.moore@hp.com
Dlsm_interface.txt3 Paul Moore, paul.moore@hp.com
/linux-4.1.27/drivers/net/wireless/orinoco/
DKconfig29 <http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html>
122 <http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html>.
/linux-4.1.27/
D.mailmap31 Brian Avery <b.avery@hp.com>
61 Jean Tourrilhes <jt@hpl.hp.com>
DCREDITS206 E: bame@puffin.external.hp.com
207 E: paul_bame@hp.com
1073 E: eranian@hpl.hp.com
2346 E: jsm@fc.hp.com
2571 E: paul.moore@hp.com
2587 E: davidm@hpl.hp.com if IA-64 related, else David.Mosberger@acm.org
3408 W: http://www.netlabs.net/hp/leo/
DMAINTAINERS4485 M: Davidlohr Bueso <davidlohr@hp.com>
4578 L: iss_storagedev@hp.com
4585 L: iss_storagedev@hp.com
4596 L: iss_storagedev@hp.com
4697 F: drivers/net/ethernet/hp/hp100.*
6169 W: http://www.tazenda.demon.co.uk/phil/linux-hp
/linux-4.1.27/sound/pci/hda/
Dpatch_analog.c89 hda_nid_t hp) in ad198x_power_eapd_write() argument
94 if (snd_hda_query_pin_caps(codec, hp) & AC_PINCAP_EAPD) in ad198x_power_eapd_write()
95 snd_hda_codec_write(codec, hp, 0, AC_VERB_SET_EAPD_BTLENABLE, in ad198x_power_eapd_write()
/linux-4.1.27/Documentation/arm/SA1100/
DItsy7 http://www.hpl.hp.com/downloads/crl/itsy/
/linux-4.1.27/arch/arm/mach-footbridge/
DKconfig34 <http://www.crl.hpl.hp.com/projects/personalserver/>
/linux-4.1.27/net/core/
Dskbuff.c3937 struct ipv6_opt_hdr *hp; in skb_checksum_setup_ipv6() local
3946 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off); in skb_checksum_setup_ipv6()
3947 nexthdr = hp->nexthdr; in skb_checksum_setup_ipv6()
3948 off += ipv6_optlen(hp); in skb_checksum_setup_ipv6()
3952 struct ip_auth_hdr *hp; in skb_checksum_setup_ipv6() local
3961 hp = OPT_HDR(struct ip_auth_hdr, skb, off); in skb_checksum_setup_ipv6()
3962 nexthdr = hp->nexthdr; in skb_checksum_setup_ipv6()
3963 off += ipv6_authlen(hp); in skb_checksum_setup_ipv6()
3967 struct frag_hdr *hp; in skb_checksum_setup_ipv6() local
3976 hp = OPT_HDR(struct frag_hdr, skb, off); in skb_checksum_setup_ipv6()
[all …]
/linux-4.1.27/drivers/net/wireless/ipw2x00/
DKconfig30 <http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html>.
92 <http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html>.
/linux-4.1.27/Documentation/ABI/stable/
Dsysfs-devices-node90 Contact: Lee Schermerhorn <lee.schermerhorn@hp.com>
/linux-4.1.27/security/smack/
Dsmackfs.c1086 unsigned char *hp = (char *) &skp->smk_host.sin_addr.s_addr; in netlbladdr_seq_show() local
1093 hp[0], hp[1], hp[2], hp[3], maskn, skp->smk_label->smk_known); in netlbladdr_seq_show()
/linux-4.1.27/drivers/char/
Dvirtio_console.c1187 static int notifier_add_vio(struct hvc_struct *hp, int data) in notifier_add_vio() argument
1191 port = find_port_by_vtermno(hp->vtermno); in notifier_add_vio()
1195 hp->irq_requested = 1; in notifier_add_vio()
1201 static void notifier_del_vio(struct hvc_struct *hp, int data) in notifier_del_vio() argument
1203 hp->irq_requested = 0; in notifier_del_vio()
/linux-4.1.27/arch/cris/arch-v10/
DREADME.mm15 Revision 1.3 1999/12/03 16:43:23 hp
18 Revision 1.2 1999/12/03 16:04:21 hp
/linux-4.1.27/drivers/staging/lustre/lustre/osc/
Dosc_cl_internal.h453 pgoff_t start, pgoff_t end, int hp, int discard);
Dosc_cache.c2839 pgoff_t start, pgoff_t end, int hp, int discard) in osc_cache_writeback_range() argument
2862 if (hp) { in osc_cache_writeback_range()
2891 LASSERT(hp == 0 && discard == 0); in osc_cache_writeback_range()
2933 if (hp || discard) { in osc_cache_writeback_range()
/linux-4.1.27/Documentation/misc-devices/
Dlis3lv02d55 indicating disk protection will be provided as /sys/class/leds/hp::hddprotect.
/linux-4.1.27/arch/arm/mach-sa1100/
DKconfig96 <http://h10025.www1.hp.com/ewfrf/wc/product?product=61677&cc=us&lc=en&dlc=en&product=61677#>
/linux-4.1.27/Documentation/ia64/
Defirtc.txt3 S. Eranian <eranian@hpl.hp.com>
Daliasing.txt4 <bjorn.helgaas@hp.com>
Dfsys.txt10 <davidm@hpl.hp.com>
/linux-4.1.27/Documentation/devicetree/bindings/
Dvendor-prefixes.txt97 hp Hewlett Packard
/linux-4.1.27/drivers/net/wireless/ath/ath9k/
Drecv.c997 int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) in ath_rx_tasklet() argument
1021 qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP; in ath_rx_tasklet()
Dath9k.h553 int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp);
/linux-4.1.27/Documentation/
DDMA-API-HOWTO.txt721 struct my_card_header *hp;
733 hp = (struct my_card_header *) cp->rx_buf;
734 if (header_is_ok(hp)) {
969 Grant Grundler <grundler@cup.hp.com>
974 David Mosberger-Tang <davidm@hpl.hp.com>
/linux-4.1.27/Documentation/locking/
Dmutex-design.txt4 updated by Davidlohr Bueso <davidlohr@hp.com>
/linux-4.1.27/arch/sh/boards/
DKconfig101 <http://www.hp.com/jornada/>.
/linux-4.1.27/Documentation/cpu-freq/
Dpcc-cpufreq.txt6 * Nagananda Chumbalkar <nagananda.chumbalkar@hp.com>
/linux-4.1.27/include/net/
Dtcp.h1337 int tcp_md5_hash_key(struct tcp_md5sig_pool *hp,
/linux-4.1.27/Documentation/PCI/
DMSI-HOWTO.txt5 email: Martine.Silbermann@hp.com
/linux-4.1.27/drivers/media/usb/pvrusb2/
Dpvrusb2-hdw.c3337 struct pvr2_stream *pvr2_hdw_get_video_stream(struct pvr2_hdw *hp) in pvr2_hdw_get_video_stream() argument
3339 return hp->vid_stream; in pvr2_hdw_get_video_stream()
/linux-4.1.27/drivers/md/
Draid5.c456 struct hlist_head *hp = stripe_hash(conf, sh->sector); in insert_hash() local
461 hlist_add_head(&sh->hash, hp); in insert_hash()
/linux-4.1.27/arch/mips/
DKconfig2766 <ftp://ftp.hp.com/pub/alphaserver/archive/triadd/>