Home
last modified time | relevance | path

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

/linux-4.4.14/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.c82 static int hvc_tile_notifier_add_irq(struct hvc_struct *hp, int irq) in hvc_tile_notifier_add_irq() argument
88 rc = notifier_add_irq(hp, irq); in hvc_tile_notifier_add_irq()
98 notifier_del_irq(hp, irq); in hvc_tile_notifier_add_irq()
103 static void hvc_tile_notifier_del_irq(struct hvc_struct *hp, int irq) in hvc_tile_notifier_del_irq() argument
110 notifier_del_irq(hp, irq); in hvc_tile_notifier_del_irq()
113 static void hvc_tile_notifier_hangup_irq(struct hvc_struct *hp, int irq) in hvc_tile_notifier_hangup_irq() argument
115 hvc_tile_notifier_del_irq(hp, irq); in hvc_tile_notifier_hangup_irq()
133 struct hvc_struct *hp; in hvc_tile_probe() local
142 hp = hvc_alloc(0, tile_hvc_irq, &hvc_tile_get_put_ops, 128); in hvc_tile_probe()
143 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()
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.4.14/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()
1854 static struct vnet *vnet_find_parent(struct mdesc_handle *hp, in vnet_find_parent() argument
1861 mdesc_for_each_arc(a, hp, port_node, MDESC_ARC_TYPE_BACK) { in vnet_find_parent()
1862 u64 target = mdesc_arc_target(hp, a); in vnet_find_parent()
1865 name = mdesc_get_property(hp, target, "name", NULL); in vnet_find_parent()
1869 local_mac = mdesc_get_property(hp, target, in vnet_find_parent()
1920 struct mdesc_handle *hp; in vnet_port_probe() local
1929 hp = mdesc_grab(); in vnet_port_probe()
1931 vp = vnet_find_parent(hp, vdev->mp, vdev); in vnet_port_probe()
[all …]
/linux-4.4.14/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.4.14/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.c465 struct mdesc_handle *hp; in mdesc_cpu_hwcap_list() local
471 hp = mdesc_grab(); in mdesc_cpu_hwcap_list()
472 if (!hp) in mdesc_cpu_hwcap_list()
475 pn = mdesc_node_by_name(hp, MDESC_NODE_NULL, "cpu"); in mdesc_cpu_hwcap_list()
479 prop = mdesc_get_property(hp, pn, "hwcap-list", &len); in mdesc_cpu_hwcap_list()
505 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.c2321 struct mdesc_handle *hp; in ldc_init() local
2326 hp = mdesc_grab(); in ldc_init()
2327 if (!hp) in ldc_init()
2330 mp = mdesc_node_by_name(hp, MDESC_NODE_NULL, "platform"); in ldc_init()
2335 v = mdesc_get_property(hp, mp, "domaining-enabled", NULL); in ldc_init()
2356 mdesc_release(hp); in ldc_init()
/linux-4.4.14/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()
297 struct udphdr _hdr, *hp; in tproxy_tg4() local
300 hp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_hdr), &_hdr); in tproxy_tg4()
301 if (hp == NULL) in tproxy_tg4()
310 hp->source, hp->dest, in tproxy_tg4()
315 lport = hp->dest; in tproxy_tg4()
[all …]
Dxt_socket.c160 struct udphdr _hdr, *hp; in xt_socket_lookup_slow_v4() local
162 hp = skb_header_pointer(skb, ip_hdrlen(skb), in xt_socket_lookup_slow_v4()
164 if (hp == NULL) in xt_socket_lookup_slow_v4()
169 sport = hp->source; in xt_socket_lookup_slow_v4()
171 dport = hp->dest; in xt_socket_lookup_slow_v4()
355 struct udphdr _hdr, *hp; in xt_socket_lookup_slow_v6() local
357 hp = skb_header_pointer(skb, thoff, sizeof(_hdr), &_hdr); in xt_socket_lookup_slow_v6()
358 if (hp == NULL) in xt_socket_lookup_slow_v6()
362 sport = hp->source; in xt_socket_lookup_slow_v6()
364 dport = hp->dest; in xt_socket_lookup_slow_v6()
Dnf_conntrack_proto_udp.c44 const struct udphdr *hp; in udp_pkt_to_tuple() local
48 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr); in udp_pkt_to_tuple()
49 if (hp == NULL) in udp_pkt_to_tuple()
52 tuple->src.u.udp.port = hp->source; in udp_pkt_to_tuple()
53 tuple->dst.u.udp.port = hp->dest; in udp_pkt_to_tuple()
Dnf_conntrack_proto_udplite.c54 const struct udphdr *hp; in udplite_pkt_to_tuple() local
57 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr); in udplite_pkt_to_tuple()
58 if (hp == NULL) in udplite_pkt_to_tuple()
61 tuple->src.u.udp.port = hp->source; in udplite_pkt_to_tuple()
62 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.c161 const struct sctphdr *hp; in sctp_pkt_to_tuple() local
165 hp = skb_header_pointer(skb, dataoff, 8, &_hdr); in sctp_pkt_to_tuple()
166 if (hp == NULL) in sctp_pkt_to_tuple()
169 tuple->src.u.sctp.port = hp->source; in sctp_pkt_to_tuple()
170 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.4.14/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.c530 static int tcp_v6_md5_hash_pseudoheader(struct tcp_md5sig_pool *hp, in tcp_v6_md5_hash_pseudoheader() argument
537 bp = &hp->md5_blk.ip6; in tcp_v6_md5_hash_pseudoheader()
545 return crypto_hash_update(&hp->md5_desc, &sg, sizeof(*bp)); in tcp_v6_md5_hash_pseudoheader()
552 struct tcp_md5sig_pool *hp; in tcp_v6_md5_hash_hdr() local
555 hp = tcp_get_md5sig_pool(); in tcp_v6_md5_hash_hdr()
556 if (!hp) in tcp_v6_md5_hash_hdr()
558 desc = &hp->md5_desc; in tcp_v6_md5_hash_hdr()
562 if (tcp_v6_md5_hash_pseudoheader(hp, daddr, saddr, th->doff << 2)) in tcp_v6_md5_hash_hdr()
564 if (tcp_md5_hash_header(hp, th)) in tcp_v6_md5_hash_hdr()
566 if (tcp_md5_hash_key(hp, key)) in tcp_v6_md5_hash_hdr()
[all …]
/linux-4.4.14/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()
732 if (adev->hp) { in acpiphp_check_host_bridge()
733 bridge = to_acpiphp_root_context(adev->hp)->root_bridge; in acpiphp_check_host_bridge()
[all …]
/linux-4.4.14/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.c3798 struct Scsi_Host *hp; in scsi_debug_target_reset() local
3809 hp = sdp->host; in scsi_debug_target_reset()
3810 if (!hp) in scsi_debug_target_reset()
3812 sdbg_host = *(struct sdebug_host_info **)shost_priv(hp); in scsi_debug_target_reset()
3834 struct Scsi_Host * hp; in scsi_debug_bus_reset() local
3843 hp = sdp->host; in scsi_debug_bus_reset()
3844 if (hp) { in scsi_debug_bus_reset()
3845 sdbg_host = *(struct sdebug_host_info **)shost_priv(hp); in scsi_debug_bus_reset()
/linux-4.4.14/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
DKconfig162 Ski-simulator For the HP simulator <http://www.hpl.hp.com/research/linux/ski/>
594 source "arch/ia64/hp/sim/Kconfig"
/linux-4.4.14/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-class-scsi_tape4 Contact: Shane Seymour <shane.seymour@hp.com>
14 Contact: Shane Seymour <shane.seymour@hp.com>
31 Contact: Shane Seymour <shane.seymour@hp.com>
41 Contact: Shane Seymour <shane.seymour@hp.com>
52 Contact: Shane Seymour <shane.seymour@hp.com>
62 Contact: Shane Seymour <shane.seymour@hp.com>
72 Contact: Shane Seymour <shane.seymour@hp.com>
83 Contact: Shane Seymour <shane.seymour@hp.com>
93 Contact: Shane Seymour <shane.seymour@hp.com>
103 Contact: Shane Seymour <shane.seymour@hp.com>
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.4.14/drivers/staging/lustre/lustre/ptlrpc/
Dptlrpc_internal.h123 struct ptlrpc_request *req, bool hp);
127 struct ptlrpc_request *req, bool hp);
130 ptlrpc_nrs_req_get_nolock0(struct ptlrpc_service_part *svcpt, bool hp,
134 ptlrpc_nrs_req_get_nolock(struct ptlrpc_service_part *svcpt, bool hp, in ptlrpc_nrs_req_get_nolock() argument
137 return ptlrpc_nrs_req_get_nolock0(svcpt, hp, false, force); in ptlrpc_nrs_req_get_nolock()
140 bool ptlrpc_nrs_req_pending_nolock(struct ptlrpc_service_part *svcpt, bool hp);
164 struct ptlrpc_nrs *nrs_svcpt2nrs(struct ptlrpc_service_part *svcpt, bool hp) in nrs_svcpt2nrs() argument
166 LASSERT(ergo(hp, nrs_svcpt_has_hp(svcpt))); in nrs_svcpt2nrs()
167 return hp ? svcpt->scp_nrs_hp : &svcpt->scp_nrs_reg; in nrs_svcpt2nrs()
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.4.14/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.c42 const struct icmp6hdr *hp; in icmpv6_pkt_to_tuple() local
45 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr); in icmpv6_pkt_to_tuple()
46 if (hp == NULL) in icmpv6_pkt_to_tuple()
48 tuple->dst.u.icmp.type = hp->icmp6_type; in icmpv6_pkt_to_tuple()
49 tuple->src.u.icmp.id = hp->icmp6_identifier; in icmpv6_pkt_to_tuple()
50 tuple->dst.u.icmp.code = hp->icmp6_code; in icmpv6_pkt_to_tuple()
/linux-4.4.14/Documentation/sound/alsa/
DHD-Audio-Models.txt26 hp-eapd Disable HP EAPD on NID 0x15
37 headset-mode-no-hp-mic Headset mode support without headphone mic
39 hp-gpio-led GPIO LED support on HP laptops
70 no-primary-hp VAIO Z/VGC-LN51JGB workaround (for fixed speaker DAC)
110 hp HP nx6320
137 laptop 3-jack with hp-jack automute
155 laptop-hp Laptop config for some HP models (subdevice 30A5)
164 hp HP Spartan laptop
165 hp-dv6736 HP dv6736
166 hp-f700 HP Compaq Presario F700
[all …]
DHD-Audio.txt475 - hp_mic_detect (bool): enable/disable the hp/mic shared input for a
/linux-4.4.14/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.4.14/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()
/linux-4.4.14/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>;
Drt5645.txt15 - hp-detect-gpios:
17 we will get the JD status by getting the value of hp-detect-gpios.
66 hp-detect-gpios = <&gpio 19 0>;
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.txt21 - simple-audio-card,hp-det-gpio : Reference to GPIO that signals when
/linux-4.4.14/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.4.14/arch/sparc/mm/
Dtsb.c229 struct hv_tsb_descr *hp = &mm->context.tsb_descr[tsb_idx]; in setup_tsb_params() local
233 hp->pgsz_idx = HV_PGSZ_IDX_BASE; in setup_tsb_params()
237 hp->pgsz_idx = HV_PGSZ_IDX_HUGE; in setup_tsb_params()
243 hp->assoc = 1; in setup_tsb_params()
244 hp->num_ttes = tsb_bytes / 16; in setup_tsb_params()
245 hp->ctx_idx = 0; in setup_tsb_params()
248 hp->pgsz_mask = HV_PGSZ_MASK_BASE; in setup_tsb_params()
252 hp->pgsz_mask = HV_PGSZ_MASK_HUGE; in setup_tsb_params()
258 hp->tsb_base = tsb_paddr; in setup_tsb_params()
259 hp->resv = 0; in setup_tsb_params()
/linux-4.4.14/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.4.14/sound/soc/codecs/
Drt298.c221 static int rt298_jack_detect(struct rt298_priv *rt298, bool *hp, bool *mic) in rt298_jack_detect() argument
226 *hp = false; in rt298_jack_detect()
236 *hp = buf & 0x80000000; in rt298_jack_detect()
237 if (*hp == rt298->is_hp_in) in rt298_jack_detect()
239 rt298->is_hp_in = *hp; in rt298_jack_detect()
240 if (*hp) { in rt298_jack_detect()
281 *hp = buf & 0x80000000; in rt298_jack_detect()
288 if (!*hp) in rt298_jack_detect()
292 pr_debug("*hp = %d *mic = %d\n", *hp, *mic); in rt298_jack_detect()
302 bool hp = false; in rt298_jack_detect_work() local
[all …]
Drt286.c215 static int rt286_jack_detect(struct rt286_priv *rt286, bool *hp, bool *mic) in rt286_jack_detect() argument
220 *hp = false; in rt286_jack_detect()
230 *hp = buf & 0x80000000; in rt286_jack_detect()
231 if (*hp) { in rt286_jack_detect()
272 *hp = buf & 0x80000000; in rt286_jack_detect()
279 if (!*hp) in rt286_jack_detect()
291 bool hp = false; in rt286_jack_detect_work() local
294 rt286_jack_detect(rt286, &hp, &mic); in rt286_jack_detect_work()
296 if (hp == true) in rt286_jack_detect_work()
937 bool hp = false; in rt286_irq() local
[all …]
/linux-4.4.14/arch/powerpc/kvm/
Dbook3s_hv_rm_mmu.c494 __be64 *hp, *hptes[4]; in kvmppc_h_bulk_remove() local
524 hp = (__be64 *) (kvm->arch.hpt_virt + (pte_index << 4)); in kvmppc_h_bulk_remove()
526 if (!try_lock_hpte(hp, HPTE_V_HVLOCK)) { in kvmppc_h_bulk_remove()
529 while (!try_lock_hpte(hp, HPTE_V_HVLOCK)) in kvmppc_h_bulk_remove()
533 hp0 = be64_to_cpu(hp[0]); in kvmppc_h_bulk_remove()
550 hp[0] &= ~cpu_to_be64(HPTE_V_HVLOCK); in kvmppc_h_bulk_remove()
563 hp[0] = 0; in kvmppc_h_bulk_remove()
568 hp[0] &= ~cpu_to_be64(HPTE_V_VALID); in kvmppc_h_bulk_remove()
569 tlbrb[n] = compute_tlbie_rb(be64_to_cpu(hp[0]), in kvmppc_h_bulk_remove()
570 be64_to_cpu(hp[1]), pte_index); in kvmppc_h_bulk_remove()
[all …]
Dbook3s_64_mmu_hv.c876 unsigned long *hp; in kvm_test_age_rmapp() local
889 hp = (unsigned long *)(kvm->arch.hpt_virt + (i << 4)); in kvm_test_age_rmapp()
891 if (be64_to_cpu(hp[1]) & HPTE_R_R) in kvm_test_age_rmapp()
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/include/acpi/
Dacpi_bus.h370 struct acpi_hotplug_context *hp; member
440 struct acpi_hotplug_context *hp) in acpi_set_hp_context() argument
442 hp->self = adev; in acpi_set_hp_context()
443 adev->hp = hp; in acpi_set_hp_context()
447 struct acpi_hotplug_context *hp,
/linux-4.4.14/sound/soc/omap/
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()
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()
/linux-4.4.14/drivers/platform/x86/
DMakefile21 obj-$(CONFIG_HP_WIRELESS) += hp-wireless.o
22 obj-$(CONFIG_HP_WMI) += hp-wmi.o
DKconfig236 hp::hddprotect. For more information on the feature, refer to
251 be called hp-wireless.
264 be called hp-wmi.
/linux-4.4.14/net/ipv4/
Dtcp_ipv4.c1018 static int tcp_v4_md5_hash_pseudoheader(struct tcp_md5sig_pool *hp, in tcp_v4_md5_hash_pseudoheader() argument
1024 bp = &hp->md5_blk.ip4; in tcp_v4_md5_hash_pseudoheader()
1038 return crypto_hash_update(&hp->md5_desc, &sg, sizeof(*bp)); in tcp_v4_md5_hash_pseudoheader()
1044 struct tcp_md5sig_pool *hp; in tcp_v4_md5_hash_hdr() local
1047 hp = tcp_get_md5sig_pool(); in tcp_v4_md5_hash_hdr()
1048 if (!hp) in tcp_v4_md5_hash_hdr()
1050 desc = &hp->md5_desc; in tcp_v4_md5_hash_hdr()
1054 if (tcp_v4_md5_hash_pseudoheader(hp, daddr, saddr, th->doff << 2)) in tcp_v4_md5_hash_hdr()
1056 if (tcp_md5_hash_header(hp, th)) in tcp_v4_md5_hash_hdr()
1058 if (tcp_md5_hash_key(hp, key)) in tcp_v4_md5_hash_hdr()
[all …]
Dtcp.c3000 int tcp_md5_hash_header(struct tcp_md5sig_pool *hp, in tcp_md5_hash_header() argument
3013 err = crypto_hash_update(&hp->md5_desc, &sg, sizeof(hdr)); in tcp_md5_hash_header()
3018 int tcp_md5_hash_skb_data(struct tcp_md5sig_pool *hp, in tcp_md5_hash_skb_data() argument
3023 struct hash_desc *desc = &hp->md5_desc; in tcp_md5_hash_skb_data()
3048 if (tcp_md5_hash_skb_data(hp, frag_iter, 0)) in tcp_md5_hash_skb_data()
3055 int tcp_md5_hash_key(struct tcp_md5sig_pool *hp, const struct tcp_md5sig_key *key) in tcp_md5_hash_key() argument
3060 return crypto_hash_update(&hp->md5_desc, &sg, key->keylen); in tcp_md5_hash_key()
/linux-4.4.14/drivers/acpi/
Ddock.c114 if (!adev->hp) in dock_hotplug_event()
120 fixup = adev->hp->fixup; in dock_hotplug_event()
129 uevent = adev->hp->uevent; in dock_hotplug_event()
138 notify = adev->hp->notify; in dock_hotplug_event()
Dscan.c84 struct acpi_hotplug_context *hp, in acpi_initialize_hp_context() argument
89 hp->notify = notify; in acpi_initialize_hp_context()
90 hp->uevent = uevent; in acpi_initialize_hp_context()
91 acpi_set_hp_context(adev, hp); in acpi_initialize_hp_context()
423 notify = adev->hp ? adev->hp->notify : NULL; in acpi_device_hotplug()
/linux-4.4.14/arch/arm/boot/dts/
Ddm8148-t410.dts12 compatible = "hp,t410", "ti,dm8148";
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";
Dr8a7793.dtsi241 clock-output-names = "hp";
Dtegra20-paz00.dts590 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
Dtegra124-nyan.dtsi696 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>;
Dtegra30-cardhu.dtsi611 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
Dr8a7740.dtsi469 "i", "zg", "b", "m1", "hp",
Dtegra20-harmony.dts765 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
Dr8a73a4.dtsi514 "zx", "zs", "hp";
Dsh73a0.dtsi591 "z", "zx", "hp";
Dtegra20-seaboard.dts929 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>;
Dr8a7794.dtsi840 clock-output-names = "hp";
Dr8a7791.dtsi1124 clock-output-names = "hp";
Dr8a7790.dtsi1107 clock-output-names = "hp";
Dtegra124-jetson-tk1.dts1923 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.4.14/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.4.14/arch/m68k/hp300/
DREADME.hp3004 The Linux/HP web page is at <http://www.tazenda.demon.co.uk/phil/linux-hp/>
/linux-4.4.14/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.4.14/drivers/parisc/
DREADME.dino13 ** http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?locale=en_US&prodTypeId=12454&prodSeri…
/linux-4.4.14/drivers/scsi/fcoe/
Dfcoe.c1601 struct fcoe_hdr *hp; in fcoe_xmit() local
1689 hp = (struct fcoe_hdr *)(eh + 1); in fcoe_xmit()
1690 memset(hp, 0, sizeof(*hp)); in fcoe_xmit()
1692 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER); in fcoe_xmit()
1693 hp->fcoe_sof = sof; in fcoe_xmit()
1790 struct fcoe_hdr *hp; in fcoe_recv_frame() local
1815 hp = (struct fcoe_hdr *) skb_network_header(skb); in fcoe_recv_frame()
1818 if (unlikely(FC_FCOE_DECAPS_VER(hp) != FC_FCOE_VER)) { in fcoe_recv_frame()
1824 "%x\n", FC_FCOE_DECAPS_VER(hp), in fcoe_recv_frame()
1838 fr_sof(fp) = hp->fcoe_sof; in fcoe_recv_frame()
/linux-4.4.14/security/
Dsecurity.c218 struct security_hook_list *hp; in security_vm_enough_memory_mm() local
229 list_for_each_entry(hp, &security_hook_heads.vm_enough_memory, list) { in security_vm_enough_memory_mm()
230 rc = hp->hook.vm_enough_memory(mm, pages); in security_vm_enough_memory_mm()
993 struct security_hook_list *hp; in security_task_prctl() local
995 list_for_each_entry(hp, &security_hook_heads.task_prctl, list) { in security_task_prctl()
996 thisrc = hp->hook.task_prctl(option, arg2, arg3, arg4, arg5); in security_task_prctl()
1453 struct security_hook_list *hp; in security_xfrm_state_pol_flow_match() local
1465 list_for_each_entry(hp, &security_hook_heads.xfrm_state_pol_flow_match, in security_xfrm_state_pol_flow_match()
1467 rc = hp->hook.xfrm_state_pol_flow_match(x, xp, fl); in security_xfrm_state_pol_flow_match()
/linux-4.4.14/Documentation/watchdog/
Dhpwdt.txt6 Thomas Mingarelli <thomas.mingarelli@hp.com>
95 (thomas.mingarelli@hp.com)
/linux-4.4.14/drivers/staging/lustre/lustre/llite/
Ddir.c1800 struct hsm_progress hp; in ll_dir_ioctl() local
1802 if (copy_from_user(&hp, (void *)arg, sizeof(hp))) in ll_dir_ioctl()
1805 hpk.hpk_fid = hp.hp_fid; in ll_dir_ioctl()
1806 hpk.hpk_cookie = hp.hp_cookie; in ll_dir_ioctl()
1807 hpk.hpk_extent = hp.hp_extent; in ll_dir_ioctl()
1808 hpk.hpk_flags = hp.hp_flags; in ll_dir_ioctl()
1809 hpk.hpk_errval = hp.hp_errval; in ll_dir_ioctl()
/linux-4.4.14/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.4.14/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.4.14/drivers/net/ethernet/
DMakefile40 obj-$(CONFIG_NET_VENDOR_HP) += hp/
DKconfig77 source "drivers/net/ethernet/hp/Kconfig"
/linux-4.4.14/tools/testing/selftests/memory-hotplug/
Dmem-on-off-test.sh120 while getopts e:hp:r: opt; do
/linux-4.4.14/Documentation/netlabel/
Dintroduction.txt3 Paul Moore, paul.moore@hp.com
Dlsm_interface.txt3 Paul Moore, paul.moore@hp.com
Dcipso_ipv4.txt3 Paul Moore, paul.moore@hp.com
/linux-4.4.14/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.4.14/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.4.14/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.4.14/arch/arm/mach-footbridge/
DKconfig34 <http://www.crl.hpl.hp.com/projects/personalserver/>
/linux-4.4.14/Documentation/arm/SA1100/
DItsy7 http://www.hpl.hp.com/downloads/crl/itsy/
/linux-4.4.14/
D.mailmap32 Brian Avery <b.avery@hp.com>
63 Jean Tourrilhes <jt@hpl.hp.com>
DCREDITS210 E: bame@puffin.external.hp.com
211 E: paul_bame@hp.com
1077 E: eranian@hpl.hp.com
2350 E: jsm@fc.hp.com
2575 E: paul.moore@hp.com
2591 E: davidm@hpl.hp.com if IA-64 related, else David.Mosberger@acm.org
3420 W: http://www.netlabs.net/hp/leo/
DMAINTAINERS4927 L: iss_storagedev@hp.com
4934 L: iss_storagedev@hp.com
4945 L: iss_storagedev@hp.com
5058 F: drivers/net/ethernet/hp/hp100.*
6623 W: http://www.tazenda.demon.co.uk/phil/linux-hp
/linux-4.4.14/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.4.14/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.4.14/Documentation/ABI/stable/
Dsysfs-devices-node90 Contact: Lee Schermerhorn <lee.schermerhorn@hp.com>
/linux-4.4.14/Documentation/DocBook/
Dkernel-api.xml.db513 API-pci-hp-create-module-link
514 API-pci-hp-remove-module-link
538 API---pci-hp-register
539 API-pci-hp-deregister
540 API-pci-hp-change-slot-info
/linux-4.4.14/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.4.14/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.4.14/drivers/staging/lustre/lustre/osc/
Dosc_cl_internal.h452 pgoff_t start, pgoff_t end, int hp, int discard);
Dosc_cache.c2835 pgoff_t start, pgoff_t end, int hp, int discard) in osc_cache_writeback_range() argument
2859 if (hp) { in osc_cache_writeback_range()
2888 LASSERT(hp == 0 && discard == 0); in osc_cache_writeback_range()
2930 if (hp || discard) { in osc_cache_writeback_range()
/linux-4.4.14/Documentation/misc-devices/
Dlis3lv02d55 indicating disk protection will be provided as /sys/class/leds/hp::hddprotect.
/linux-4.4.14/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.4.14/Documentation/ia64/
Defirtc.txt3 S. Eranian <eranian@hpl.hp.com>
Daliasing.txt4 <bjorn.helgaas@hp.com>
Dfsys.txt10 <davidm@hpl.hp.com>
/linux-4.4.14/drivers/net/wireless/ath/ath9k/
Drecv.c991 int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) in ath_rx_tasklet() argument
1015 qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP; in ath_rx_tasklet()
Dath9k.h551 int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp);
/linux-4.4.14/Documentation/
DDMA-API-HOWTO.txt726 struct my_card_header *hp;
738 hp = (struct my_card_header *) cp->rx_buf;
739 if (header_is_ok(hp)) {
974 Grant Grundler <grundler@cup.hp.com>
979 David Mosberger-Tang <davidm@hpl.hp.com>
/linux-4.4.14/Documentation/locking/
Dmutex-design.txt4 updated by Davidlohr Bueso <davidlohr@hp.com>
/linux-4.4.14/Documentation/devicetree/bindings/
Dvendor-prefixes.txt109 hp Hewlett Packard
/linux-4.4.14/arch/sh/boards/
DKconfig101 <http://www.hp.com/jornada/>.
/linux-4.4.14/Documentation/cpu-freq/
Dpcc-cpufreq.txt6 * Nagananda Chumbalkar <nagananda.chumbalkar@hp.com>
/linux-4.4.14/include/net/
Dtcp.h1413 int tcp_md5_hash_key(struct tcp_md5sig_pool *hp,
/linux-4.4.14/Documentation/PCI/
DMSI-HOWTO.txt5 email: Martine.Silbermann@hp.com
/linux-4.4.14/drivers/media/usb/pvrusb2/
Dpvrusb2-hdw.c3344 struct pvr2_stream *pvr2_hdw_get_video_stream(struct pvr2_hdw *hp) in pvr2_hdw_get_video_stream() argument
3346 return hp->vid_stream; in pvr2_hdw_get_video_stream()
/linux-4.4.14/drivers/md/
Draid5.c454 struct hlist_head *hp = stripe_hash(conf, sh->sector); in insert_hash() local
459 hlist_add_head(&sh->hash, hp); in insert_hash()
/linux-4.4.14/arch/mips/
DKconfig2903 <ftp://ftp.hp.com/pub/alphaserver/archive/triadd/>