/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb/ |
D | vsc7326_reg.h | 166 #define REG_MAX_LEN(pn) CRA(0x1,pn,0x02) /* Max length */ argument 167 #define REG_MAC_HIGH_ADDR(pn) CRA(0x1,pn,0x03) /* Upper 24 bits of MAC addr */ argument 168 #define REG_MAC_LOW_ADDR(pn) CRA(0x1,pn,0x04) /* Lower 24 bits of MAC addr */ argument 173 #define REG_MODE_CFG(pn) CRA(0x1,pn,0x00) /* Mode configuration */ argument 174 #define REG_PAUSE_CFG(pn) CRA(0x1,pn,0x01) /* Pause configuration */ argument 175 #define REG_NORMALIZER(pn) CRA(0x1,pn,0x05) /* Normalizer */ argument 176 #define REG_TBI_STATUS(pn) CRA(0x1,pn,0x06) /* TBI status */ argument 177 #define REG_PCS_STATUS_DBG(pn) CRA(0x1,pn,0x07) /* PCS status debug */ argument 178 #define REG_PCS_CTRL(pn) CRA(0x1,pn,0x08) /* PCS control */ argument 179 #define REG_TBI_CONFIG(pn) CRA(0x1,pn,0x09) /* TBI configuration */ argument [all …]
|
/linux-4.4.14/net/phonet/ |
D | pep.c | 122 struct pep_sock *pn = pep_sk(sk); in pep_indicate() local 133 ph->pipe_handle = pn->pipe_handle; in pep_indicate() 143 struct pep_sock *pn = pep_sk(sk); in pipe_handler_request() local 154 ph->pipe_handle = pn->pipe_handle; in pipe_handler_request() 161 struct pep_sock *pn = pep_sk(sk); in pipe_handler_send_created_ind() local 164 pn->tx_fc, pn->rx_fc, in pipe_handler_send_created_ind() 241 struct pep_sock *pn = pep_sk(sk); in pipe_grant_credits() local 245 switch (pn->rx_fc) { in pipe_grant_credits() 251 pn->rx_credits = 1; in pipe_grant_credits() 254 if ((pn->rx_credits + CREDITS_THR) > CREDITS_MAX) in pipe_grant_credits() [all …]
|
D | socket.c | 87 struct pn_sock *pn = pn_sk(sknode); in pn_find_sock_by_sa() local 88 BUG_ON(!pn->sobject); /* unbound socket */ in pn_find_sock_by_sa() 94 if (pn_port(pn->sobject) != pn_port(obj)) in pn_find_sock_by_sa() 98 if (pn->resource != res) in pn_find_sock_by_sa() 101 if (pn_addr(pn->sobject) && in pn_find_sock_by_sa() 102 pn_addr(pn->sobject) != pn_addr(obj)) in pn_find_sock_by_sa() 168 struct pn_sock *pn = pn_sk(sk); in pn_socket_bind() local 188 if (sk->sk_state != TCP_CLOSE || pn_port(pn->sobject)) { in pn_socket_bind() 199 pn->sobject = pn_object(saddr, pn_port(pn->sobject)); in pn_socket_bind() 200 pn->resource = spn->spn_resource; in pn_socket_bind() [all …]
|
D | af_phonet.c | 67 struct pn_sock *pn; in pn_socket_create() local 111 pn = pn_sk(sk); in pn_socket_create() 112 pn->sobject = 0; in pn_socket_create() 113 pn->dobject = 0; in pn_socket_create() 114 pn->resource = 0; in pn_socket_create() 242 struct pn_sock *pn = pn_sk(sk); in pn_skb_send() local 247 src = pn->sobject; in pn_skb_send() 252 dst = pn->dobject; in pn_skb_send() 253 res = pn->resource; in pn_skb_send()
|
/linux-4.4.14/net/netfilter/ |
D | nf_conntrack_proto.c | 297 struct nf_proto_net *pn, in nf_ct_l4proto_register_sysctl() argument 303 if (pn->ctl_table != NULL) { in nf_ct_l4proto_register_sysctl() 305 &pn->ctl_table_header, in nf_ct_l4proto_register_sysctl() 307 pn->ctl_table); in nf_ct_l4proto_register_sysctl() 309 if (!pn->users) { in nf_ct_l4proto_register_sysctl() 310 kfree(pn->ctl_table); in nf_ct_l4proto_register_sysctl() 311 pn->ctl_table = NULL; in nf_ct_l4proto_register_sysctl() 316 if (l4proto->l3proto != AF_INET6 && pn->ctl_compat_table != NULL) { in nf_ct_l4proto_register_sysctl() 318 nf_ct_kfree_compat_sysctl_table(pn); in nf_ct_l4proto_register_sysctl() 322 &pn->ctl_compat_header, in nf_ct_l4proto_register_sysctl() [all …]
|
D | nf_conntrack_proto_generic.c | 167 static int generic_kmemdup_sysctl_table(struct nf_proto_net *pn, in generic_kmemdup_sysctl_table() argument 171 pn->ctl_table = kmemdup(generic_sysctl_table, in generic_kmemdup_sysctl_table() 174 if (!pn->ctl_table) in generic_kmemdup_sysctl_table() 177 pn->ctl_table[0].data = &gn->timeout; in generic_kmemdup_sysctl_table() 182 static int generic_kmemdup_compat_sysctl_table(struct nf_proto_net *pn, in generic_kmemdup_compat_sysctl_table() argument 187 pn->ctl_compat_table = kmemdup(generic_compat_sysctl_table, in generic_kmemdup_compat_sysctl_table() 190 if (!pn->ctl_compat_table) in generic_kmemdup_compat_sysctl_table() 193 pn->ctl_compat_table[0].data = &gn->timeout; in generic_kmemdup_compat_sysctl_table() 203 struct nf_proto_net *pn = &gn->pn; in generic_init_net() local 207 ret = generic_kmemdup_compat_sysctl_table(pn, gn); in generic_init_net() [all …]
|
D | nf_conntrack_proto_udp.c | 240 static int udp_kmemdup_sysctl_table(struct nf_proto_net *pn, in udp_kmemdup_sysctl_table() argument 244 if (pn->ctl_table) in udp_kmemdup_sysctl_table() 246 pn->ctl_table = kmemdup(udp_sysctl_table, in udp_kmemdup_sysctl_table() 249 if (!pn->ctl_table) in udp_kmemdup_sysctl_table() 251 pn->ctl_table[0].data = &un->timeouts[UDP_CT_UNREPLIED]; in udp_kmemdup_sysctl_table() 252 pn->ctl_table[1].data = &un->timeouts[UDP_CT_REPLIED]; in udp_kmemdup_sysctl_table() 257 static int udp_kmemdup_compat_sysctl_table(struct nf_proto_net *pn, in udp_kmemdup_compat_sysctl_table() argument 262 pn->ctl_compat_table = kmemdup(udp_compat_sysctl_table, in udp_kmemdup_compat_sysctl_table() 265 if (!pn->ctl_compat_table) in udp_kmemdup_compat_sysctl_table() 268 pn->ctl_compat_table[0].data = &un->timeouts[UDP_CT_UNREPLIED]; in udp_kmemdup_compat_sysctl_table() [all …]
|
D | nf_conntrack_proto_sctp.c | 149 struct nf_proto_net pn; member 764 static int sctp_kmemdup_sysctl_table(struct nf_proto_net *pn, in sctp_kmemdup_sysctl_table() argument 768 if (pn->ctl_table) in sctp_kmemdup_sysctl_table() 771 pn->ctl_table = kmemdup(sctp_sysctl_table, in sctp_kmemdup_sysctl_table() 774 if (!pn->ctl_table) in sctp_kmemdup_sysctl_table() 777 pn->ctl_table[0].data = &sn->timeouts[SCTP_CONNTRACK_CLOSED]; in sctp_kmemdup_sysctl_table() 778 pn->ctl_table[1].data = &sn->timeouts[SCTP_CONNTRACK_COOKIE_WAIT]; in sctp_kmemdup_sysctl_table() 779 pn->ctl_table[2].data = &sn->timeouts[SCTP_CONNTRACK_COOKIE_ECHOED]; in sctp_kmemdup_sysctl_table() 780 pn->ctl_table[3].data = &sn->timeouts[SCTP_CONNTRACK_ESTABLISHED]; in sctp_kmemdup_sysctl_table() 781 pn->ctl_table[4].data = &sn->timeouts[SCTP_CONNTRACK_SHUTDOWN_SENT]; in sctp_kmemdup_sysctl_table() [all …]
|
D | nf_conntrack_proto_udplite.c | 40 struct nf_proto_net pn; member 238 static int udplite_kmemdup_sysctl_table(struct nf_proto_net *pn, in udplite_kmemdup_sysctl_table() argument 242 if (pn->ctl_table) in udplite_kmemdup_sysctl_table() 245 pn->ctl_table = kmemdup(udplite_sysctl_table, in udplite_kmemdup_sysctl_table() 248 if (!pn->ctl_table) in udplite_kmemdup_sysctl_table() 251 pn->ctl_table[0].data = &un->timeouts[UDPLITE_CT_UNREPLIED]; in udplite_kmemdup_sysctl_table() 252 pn->ctl_table[1].data = &un->timeouts[UDPLITE_CT_REPLIED]; in udplite_kmemdup_sysctl_table() 260 struct nf_proto_net *pn = &un->pn; in udplite_init_net() local 262 if (!pn->users) { in udplite_init_net() 269 return udplite_kmemdup_sysctl_table(pn, un); in udplite_init_net()
|
D | nf_conntrack_proto_tcp.c | 1572 static int tcp_kmemdup_sysctl_table(struct nf_proto_net *pn, in tcp_kmemdup_sysctl_table() argument 1576 if (pn->ctl_table) in tcp_kmemdup_sysctl_table() 1579 pn->ctl_table = kmemdup(tcp_sysctl_table, in tcp_kmemdup_sysctl_table() 1582 if (!pn->ctl_table) in tcp_kmemdup_sysctl_table() 1585 pn->ctl_table[0].data = &tn->timeouts[TCP_CONNTRACK_SYN_SENT]; in tcp_kmemdup_sysctl_table() 1586 pn->ctl_table[1].data = &tn->timeouts[TCP_CONNTRACK_SYN_RECV]; in tcp_kmemdup_sysctl_table() 1587 pn->ctl_table[2].data = &tn->timeouts[TCP_CONNTRACK_ESTABLISHED]; in tcp_kmemdup_sysctl_table() 1588 pn->ctl_table[3].data = &tn->timeouts[TCP_CONNTRACK_FIN_WAIT]; in tcp_kmemdup_sysctl_table() 1589 pn->ctl_table[4].data = &tn->timeouts[TCP_CONNTRACK_CLOSE_WAIT]; in tcp_kmemdup_sysctl_table() 1590 pn->ctl_table[5].data = &tn->timeouts[TCP_CONNTRACK_LAST_ACK]; in tcp_kmemdup_sysctl_table() [all …]
|
D | nf_conntrack_proto_dccp.c | 390 struct nf_proto_net pn; member 819 static int dccp_kmemdup_sysctl_table(struct net *net, struct nf_proto_net *pn, in dccp_kmemdup_sysctl_table() argument 823 if (pn->ctl_table) in dccp_kmemdup_sysctl_table() 826 pn->ctl_table = kmemdup(dccp_sysctl_table, in dccp_kmemdup_sysctl_table() 829 if (!pn->ctl_table) in dccp_kmemdup_sysctl_table() 832 pn->ctl_table[0].data = &dn->dccp_timeout[CT_DCCP_REQUEST]; in dccp_kmemdup_sysctl_table() 833 pn->ctl_table[1].data = &dn->dccp_timeout[CT_DCCP_RESPOND]; in dccp_kmemdup_sysctl_table() 834 pn->ctl_table[2].data = &dn->dccp_timeout[CT_DCCP_PARTOPEN]; in dccp_kmemdup_sysctl_table() 835 pn->ctl_table[3].data = &dn->dccp_timeout[CT_DCCP_OPEN]; in dccp_kmemdup_sysctl_table() 836 pn->ctl_table[4].data = &dn->dccp_timeout[CT_DCCP_CLOSEREQ]; in dccp_kmemdup_sysctl_table() [all …]
|
/linux-4.4.14/arch/sparc/lib/ |
D | memscan_64.S | 19 brlez,pn %o1, szzero 25 brz,pn %o5, 10f 28 be,pn %xcc, szzero 30 bne,a,pn %icc, 1b 45 bne,pn %xcc, check_bytes 51 bne,a,pn %icc, 2f 58 be,pn %icc, 1f 62 be,pn %icc, 1f 67 be,pn %icc, 1f 71 be,pn %icc, 1f [all …]
|
D | strlen.S | 21 BRANCH_REG_ZERO(pn, %o5, 11f) 24 BRANCH32(be, pn, 4f) 27 BRANCH_REG_ZERO(pn, %o5, 12f) 33 BRANCH_REG_ZERO(pn, %o5, 13f) 54 BRANCH32(be, pn, 1f) 58 BRANCH32(be, pn, 1f) 62 BRANCH32(be, pn, 1f)
|
D | bzero.S | 25 brz,pn %o1, __bzero_done 27 bl,pn %icc, __bzero_tiny 34 bne,pn %icc, 1b 44 bl,pn %icc, 5f 63 brz,pn %g1, 6f 91 brz,pn %o1, __clear_user_done 93 bl,pn %icc, __clear_user_tiny 100 bne,pn %icc, 1b 110 bl,pn %icc, 5f 129 brz,pn %g1, 6f
|
D | NG4memcpy.S | 20 be,a,pn %icc, 999f; \ 110 brz,pn %o2, .Lexit 112 ble,pn %icc, .Ltiny 114 ble,pn %icc, .Lsmall 117 bl,pn %icc, .Lmedium 147 bne,pn %icc, .Llarge_src_unaligned 200 brz,pn %o2, .Lexit 202 ble,pn %icc, .Lsmall_unaligned 254 brz,pn %o2, .Lexit 256 ble,pn %icc, .Lsmall_unaligned [all …]
|
D | atomic_64.S | 25 bne,pn %icc, BACKOFF_LABEL(2f, 1b); \ 39 bne,pn %icc, BACKOFF_LABEL(2f, 1b); \ 65 bne,pn %xcc, BACKOFF_LABEL(2f, 1b); \ 79 bne,pn %xcc, BACKOFF_LABEL(2f, 1b); \ 101 brlez,pn %g1, 3f 105 bne,pn %xcc, BACKOFF_LABEL(2f, 1b)
|
D | VISsave.S | 27 brnz,a,pn %g1, 1f 33 1: bne,pn %icc, 2f 57 be,pn %icc, 9b 61 be,pn %icc, 4f 68 be,pn %icc, 5f
|
D | GENbzero.S | 35 1: brz,pn %o1, GENbzero_return 47 bl,pn %icc, GENbzero_tiny 58 bl,pn %icc, GENbzero_medium 87 brz,pn %o1, GENbzero_done 90 be,pn %xcc, 2f 120 brz,pn %o1, GENbzero_done 123 bne,pn %icc, GENbzero
|
D | strncmp_64.S | 12 brlez,pn %o2, 3f 17 brz,pn %o3, 2f 20 bne,pn %icc, 2f
|
D | bitops.S | 24 bne,pn %xcc, BACKOFF_LABEL(2f, 1b) 45 bne,pn %xcc, BACKOFF_LABEL(2f, 1b) 66 bne,pn %xcc, BACKOFF_LABEL(2f, 1b) 87 bne,pn %xcc, BACKOFF_LABEL(2f, 1b) 106 bne,pn %xcc, BACKOFF_LABEL(2f, 1b) 125 bne,pn %xcc, BACKOFF_LABEL(2f, 1b)
|
D | NGbzero.S | 34 1: brz,pn %o1, NGbzero_return 48 bl,pn %icc, NGbzero_tiny 59 bl,pn %icc, NGbzero_medium 89 brz,pn %o1, NGbzero_done 92 be,pn %xcc, 2f 122 brz,pn %o1, NGbzero_done 125 bne,pn %icc, NGbzero
|
D | copy_in_user.S | 33 be,pn %XCC, 85f 36 bleu,a,pn %XCC, 80f 41 bne,pn %XCC, 90f 68 bne,pn %XCC, 90f
|
D | checksum_64.S | 28 be,pn %icc, csum_partial_post_align 30 blu,pn %icc, csum_partial_end_cruft 44 brz,pn %o1, csum_partial_finish 51 bne,pn %icc, csum_partial_fix_alignment 60 brz,pn %o3, 2f 107 brz,pn %o3, 2f
|
D | U3memcpy.S | 97 be,pn %XCC, 85f 100 blu,a,pn %XCC, 80f 147 be,pn %icc, 3f 255 be,pn %XCC, 2f 257 be,pn %XCC, 2f 269 be,pn %XCC, 2f 276 bne,pn %XCC, 1b 287 be,pn %XCC, 85f 291 bne,pn %icc, 90f 322 bne,pn %XCC, 75f [all …]
|
D | csum_copy.S | 53 be,pn %icc, 80f 55 blu,pn %icc, 60f 71 bne,pn %icc, 95f 74 brz,pn %o2, 70f 81 bne,pn %icc, 90b 90 brz,pn %g3, 2f 157 brz,pn %g3, 2f 232 brlez,pn %o2, 4f 242 1: brz,a,pn %g1, 3f 257 1: brz,a,pn %g1, 2f
|
D | GENmemcpy.S | 60 be,pn %XCC, 85f 63 blu,a,pn %XCC, 80f 68 bne,a,pn %XCC, 90f 98 bne,pn %XCC, 90f
|
D | NG4memset.S | 47 brz,pn %g1, .Laligned64 56 brnz,pn %o4, .Lnon_bzero_loop 65 bl,pn %icc, .Ltiny 81 be,pn %icc, .Lexit
|
D | memmove.S | 11 brz,pn %o2, 99f 41 bne,pn %xcc, 4f
|
D | NGmemcpy.S | 94 be,pn %XCC, 85f 97 blu,a,pn %XCC, 80f 170 bg,pn %XCC, 9f 317 bne,pn %XCC, 75f 356 be,pn %icc, 2f 394 be,pn %icc, 85f 402 bne,pn %XCC, 90f
|
D | U1memcpy.S | 86 be,pn %xcc, jmptgt; \ 110 bl,pn %xcc, 95f; \ 117 bl,pn %xcc, 95f; \ 139 be,pn %XCC, 85f 142 blu,a,pn %XCC, 80f 187 be,pn %icc, 3f 440 bl,pn %xcc, 95f 467 bne,pn %XCC, 75f 502 be,pn %icc, 2f 540 be,pn %icc, 85f [all …]
|
D | mcount.S | 32 be,pn %icc, 1f 46 bne,pn %xcc, 5f
|
D | GENcopy_from_user.S | 26 bne,pn %icc, ___copy_in_user; \
|
D | GENcopy_to_user.S | 30 bne,pn %icc, ___copy_in_user; \
|
D | NGcopy_to_user.S | 31 bne,pn %icc, ___copy_in_user; \
|
D | memcmp.S | 13 1: BRANCH32(be, pn, 2f)
|
D | NGcopy_from_user.S | 28 bne,pn %icc, ___copy_in_user; \
|
D | NG4copy_from_user.S | 34 bne,pn %icc, ___copy_in_user; \
|
D | U1copy_from_user.S | 34 bne,pn %icc, ___copy_in_user; \
|
D | NG4copy_to_user.S | 43 bne,pn %icc, ___copy_in_user; \
|
D | U3copy_to_user.S | 34 bne,pn %icc, ___copy_in_user; \
|
D | U1copy_to_user.S | 34 bne,pn %icc, ___copy_in_user; \
|
D | NG2copy_from_user.S | 39 bne,pn %icc, ___copy_in_user; \
|
D | NG2copy_to_user.S | 48 bne,pn %icc, ___copy_in_user; \
|
D | NG2memcpy.S | 193 be,pn %XCC, 85f 196 blu,a,pn %XCC, 80f 419 bne,pn %XCC, 75f 458 be,pn %icc, 2f 496 be,pn %icc, 85f 504 bne,pn %XCC, 90f
|
D | ffs.S | 71 brz,pn %o0, 98f
|
D | clear_page.S | 94 brz,pn %o4, out
|
/linux-4.4.14/drivers/net/ppp/ |
D | pppoe.c | 166 static struct pppox_sock *__get_item(struct pppoe_net *pn, __be16 sid, in __get_item() argument 172 ret = pn->hash_table[hash]; in __get_item() 184 static int __set_item(struct pppoe_net *pn, struct pppox_sock *po) in __set_item() argument 189 ret = pn->hash_table[hash]; in __set_item() 198 po->next = pn->hash_table[hash]; in __set_item() 199 pn->hash_table[hash] = po; in __set_item() 204 static void __delete_item(struct pppoe_net *pn, __be16 sid, in __delete_item() argument 210 ret = pn->hash_table[hash]; in __delete_item() 211 src = &pn->hash_table[hash]; in __delete_item() 230 static inline struct pppox_sock *get_item(struct pppoe_net *pn, __be16 sid, in get_item() argument [all …]
|
D | ppp_generic.c | 276 static struct ppp *ppp_find_unit(struct ppp_net *pn, int unit); 277 static struct channel *ppp_find_channel(struct ppp_net *pn, int unit); 840 struct ppp_net *pn; in ppp_unattached_ioctl() local 863 pn = ppp_pernet(net); in ppp_unattached_ioctl() 864 mutex_lock(&pn->all_ppp_mutex); in ppp_unattached_ioctl() 865 ppp = ppp_find_unit(pn, unit); in ppp_unattached_ioctl() 871 mutex_unlock(&pn->all_ppp_mutex); in ppp_unattached_ioctl() 878 pn = ppp_pernet(net); in ppp_unattached_ioctl() 879 spin_lock_bh(&pn->all_channels_lock); in ppp_unattached_ioctl() 880 chan = ppp_find_channel(pn, unit); in ppp_unattached_ioctl() [all …]
|
/linux-4.4.14/net/mac80211/ |
D | wpa.c | 310 static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *b_0, u8 *aad) in ccmp_special_blocks() argument 354 memcpy(&b_0[8], pn, IEEE80211_CCMP_PN_LEN); in ccmp_special_blocks() 377 static inline void ccmp_pn2hdr(u8 *hdr, u8 *pn, int key_id) in ccmp_pn2hdr() argument 379 hdr[0] = pn[5]; in ccmp_pn2hdr() 380 hdr[1] = pn[4]; in ccmp_pn2hdr() 383 hdr[4] = pn[3]; in ccmp_pn2hdr() 384 hdr[5] = pn[2]; in ccmp_pn2hdr() 385 hdr[6] = pn[1]; in ccmp_pn2hdr() 386 hdr[7] = pn[0]; in ccmp_pn2hdr() 390 static inline void ccmp_hdr2pn(u8 *pn, u8 *hdr) in ccmp_hdr2pn() argument [all …]
|
D | key.c | 918 seq->ccmp.pn[5] = pn64; in ieee80211_get_key_tx_seq() 919 seq->ccmp.pn[4] = pn64 >> 8; in ieee80211_get_key_tx_seq() 920 seq->ccmp.pn[3] = pn64 >> 16; in ieee80211_get_key_tx_seq() 921 seq->ccmp.pn[2] = pn64 >> 24; in ieee80211_get_key_tx_seq() 922 seq->ccmp.pn[1] = pn64 >> 32; in ieee80211_get_key_tx_seq() 923 seq->ccmp.pn[0] = pn64 >> 40; in ieee80211_get_key_tx_seq() 935 const u8 *pn; in ieee80211_get_key_rx_seq() local 951 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS]; in ieee80211_get_key_rx_seq() 953 pn = key->u.ccmp.rx_pn[tid]; in ieee80211_get_key_rx_seq() 954 memcpy(seq->ccmp.pn, pn, IEEE80211_CCMP_PN_LEN); in ieee80211_get_key_rx_seq() [all …]
|
D | debugfs_key.c | 90 u64 pn; in key_tx_spec_write() local 108 ret = kstrtou64_from_user(userbuf, count, 16, &pn); in key_tx_spec_write() 112 if (pn >= (1ULL << 48)) in key_tx_spec_write() 114 atomic64_set(&key->conf.tx_pn, pn); in key_tx_spec_write() 124 u64 pn; in key_tx_spec_read() local 147 pn = atomic64_read(&key->conf.tx_pn); in key_tx_spec_read() 149 (u8)(pn >> 40), (u8)(pn >> 32), (u8)(pn >> 24), in key_tx_spec_read() 150 (u8)(pn >> 16), (u8)(pn >> 8), (u8)pn); in key_tx_spec_read()
|
D | tx.c | 2820 u64 pn; in ieee80211_xmit_fast() local 2828 pn = atomic64_inc_return(&fast_tx->key->conf.tx_pn); in ieee80211_xmit_fast() 2829 crypto_hdr[0] = pn; in ieee80211_xmit_fast() 2830 crypto_hdr[1] = pn >> 8; in ieee80211_xmit_fast() 2831 crypto_hdr[4] = pn >> 16; in ieee80211_xmit_fast() 2832 crypto_hdr[5] = pn >> 24; in ieee80211_xmit_fast() 2833 crypto_hdr[6] = pn >> 32; in ieee80211_xmit_fast() 2834 crypto_hdr[7] = pn >> 40; in ieee80211_xmit_fast()
|
D | rx.c | 1895 u8 pn[IEEE80211_CCMP_PN_LEN], *rpn; in ieee80211_rx_h_defragment() local 1904 memcpy(pn, entry->last_pn, IEEE80211_CCMP_PN_LEN); in ieee80211_rx_h_defragment() 1906 pn[i]++; in ieee80211_rx_h_defragment() 1907 if (pn[i]) in ieee80211_rx_h_defragment() 1912 if (memcmp(pn, rpn, IEEE80211_CCMP_PN_LEN)) in ieee80211_rx_h_defragment() 1914 memcpy(entry->last_pn, pn, IEEE80211_CCMP_PN_LEN); in ieee80211_rx_h_defragment()
|
D | cfg.c | 379 memcpy(seq, kseq.ccmp.pn, 6); in ieee80211_get_key()
|
/linux-4.4.14/kernel/locking/ |
D | qspinlock_paravirt.h | 151 struct pv_node *pn = (struct pv_node *)node; in pv_init_node() local 155 pn->cpu = smp_processor_id(); in pv_init_node() 156 pn->state = vcpu_running; in pv_init_node() 166 struct pv_node *pn = (struct pv_node *)node; in pv_wait_node() local 185 smp_store_mb(pn->state, vcpu_halted); in pv_wait_node() 188 pv_wait(&pn->state, vcpu_halted); in pv_wait_node() 194 cmpxchg(&pn->state, vcpu_halted, vcpu_running); in pv_wait_node() 220 struct pv_node *pn = (struct pv_node *)node; in pv_kick_node() local 230 if (cmpxchg(&pn->state, vcpu_halted, vcpu_hashed) != vcpu_halted) in pv_kick_node() 241 (void)pv_hash(lock, pn); in pv_kick_node() [all …]
|
/linux-4.4.14/drivers/pinctrl/sh-pfc/ |
D | sh_pfc.h | 267 #define PORT_1(pn, fn, pfx, sfx) fn(pn, pfx, sfx) argument 269 #define PORT_10(pn, fn, pfx, sfx) \ argument 270 PORT_1(pn, fn, pfx##0, sfx), PORT_1(pn+1, fn, pfx##1, sfx), \ 271 PORT_1(pn+2, fn, pfx##2, sfx), PORT_1(pn+3, fn, pfx##3, sfx), \ 272 PORT_1(pn+4, fn, pfx##4, sfx), PORT_1(pn+5, fn, pfx##5, sfx), \ 273 PORT_1(pn+6, fn, pfx##6, sfx), PORT_1(pn+7, fn, pfx##7, sfx), \ 274 PORT_1(pn+8, fn, pfx##8, sfx), PORT_1(pn+9, fn, pfx##9, sfx) 276 #define PORT_90(pn, fn, pfx, sfx) \ argument 277 PORT_10(pn+10, fn, pfx##1, sfx), PORT_10(pn+20, fn, pfx##2, sfx), \ 278 PORT_10(pn+30, fn, pfx##3, sfx), PORT_10(pn+40, fn, pfx##4, sfx), \ [all …]
|
D | pfc-emev2.c | 231 #define __PIN_CFG(pn, pfx, sfx) SH_PFC_PIN_CFG(pfx, 0) argument 253 #define __PORT_DATA(pn, pfx, sfx) PINMUX_DATA(PORT##pfx##_DATA, PORT##pfx##_FN) argument
|
/linux-4.4.14/drivers/rtc/ |
D | rtc-abx80x.c | 50 u16 pn; member 55 [AB0801] = {.pn = 0x0801}, 56 [AB0803] = {.pn = 0x0803}, 57 [AB0804] = {.pn = 0x0804, .has_tc = true}, 58 [AB0805] = {.pn = 0x0805, .has_tc = true}, 59 [AB1801] = {.pn = 0x1801}, 60 [AB1803] = {.pn = 0x1803}, 61 [AB1804] = {.pn = 0x1804, .has_tc = true}, 62 [AB1805] = {.pn = 0x1805, .has_tc = true}, 63 [ABX80X] = {.pn = 0} [all …]
|
/linux-4.4.14/arch/sparc/include/asm/ |
D | tsb.h | 123 bne,pn %icc, 99b; \ 127 bne,pn %icc, 99b; \ 162 brz,pn REG1, FAIL_LABEL; \ 167 brz,pn REG1, FAIL_LABEL; \ 169 brz,pn REG1, FAIL_LABEL; \ 180 brz,pn REG1, FAIL_LABEL; \ 183 be,pn %xcc, 698f; \ 185 697: brgez,pn REG1, FAIL_LABEL; \ 194 brgez,pn REG1, FAIL_LABEL; \ 208 brz,pn REG1, FAIL_LABEL; \ [all …]
|
D | head_64.h | 37 brnz,pn %tmp1, label; \ 46 be,pn %icc, label; \ 55 be,pn %icc, label; \
|
D | backoff.h | 69 bg,pn %xcc, label; \
|
D | ttable.h | 376 brnz,pn %g3, (. - (128 + 4)); \ 411 brnz,pn %g3, etrap_user_spill_64bit; \ 600 brnz,pn %g3, (. - (128 + 4)); \ 633 brnz,pn %g3, user_rtt_fill_64bit; \
|
/linux-4.4.14/net/ipv4/ |
D | fib_trie.c | 921 struct key_vector *pn, *n = t->kv; in fib_find_node() local 925 pn = n; in fib_find_node() 955 *tp = pn; in fib_find_node() 1277 struct key_vector *n, *pn; in fib_table_lookup() local 1284 pn = t->kv; in fib_table_lookup() 1287 n = get_child_rcu(pn, cindex); in fib_table_lookup() 1324 pn = n; in fib_table_lookup() 1366 t_key pkey = pn->key; in fib_table_lookup() 1372 if (IS_TRIE(pn)) in fib_table_lookup() 1378 pn = node_parent_rcu(pn); in fib_table_lookup() [all …]
|
/linux-4.4.14/net/wireless/ |
D | lib80211_crypt_ccmp.c | 113 u8 * pn, size_t dlen, u8 * b0, u8 * auth, u8 * s0) in ccmp_init_blocks() argument 142 memcpy(b0 + 8, pn, CCMP_PN_LEN); in ccmp_init_blocks() 293 u8 pn[6]; in lib80211_ccmp_decrypt() local 324 pn[0] = pos[7]; in lib80211_ccmp_decrypt() 325 pn[1] = pos[6]; in lib80211_ccmp_decrypt() 326 pn[2] = pos[5]; in lib80211_ccmp_decrypt() 327 pn[3] = pos[4]; in lib80211_ccmp_decrypt() 328 pn[4] = pos[1]; in lib80211_ccmp_decrypt() 329 pn[5] = pos[0]; in lib80211_ccmp_decrypt() 332 if (ccmp_replay_check(pn, key->rx_pn)) { in lib80211_ccmp_decrypt() [all …]
|
/linux-4.4.14/net/ipv6/ |
D | ip6_fib.c | 467 struct fib6_node *pn = NULL; in fib6_add_1() local 519 pn = fn; in fib6_add_1() 550 ln->parent = pn; in fib6_add_1() 554 pn->right = ln; in fib6_add_1() 556 pn->left = ln; in fib6_add_1() 570 pn = fn->parent; in fib6_add_1() 607 in->parent = pn; in fib6_add_1() 615 pn->right = in; in fib6_add_1() 617 pn->left = in; in fib6_add_1() 648 ln->parent = pn; in fib6_add_1() [all …]
|
D | route.c | 833 struct fib6_node *pn; in fib6_backtrack() local 837 pn = fn->parent; in fib6_backtrack() 838 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) in fib6_backtrack() 839 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); in fib6_backtrack() 841 fn = pn; in fib6_backtrack()
|
/linux-4.4.14/arch/sparc/kernel/ |
D | ktlb.S | 31 blu,pn %xcc, kvmap_itlb_longpath 39 blu,pn %xcc, kvmap_itlb_vmalloc_addr 43 blu,pn %xcc, kvmap_itlb_obp 135 brgez,pn %g4, kvmap_dtlb_nonlinear 197 bleu,pn %xcc, kvmap_dtlb_longpath 205 bgeu,pn %xcc, kvmap_vmemmap 214 blu,pn %xcc, kvmap_dtlb_longpath 218 bgeu,pn %xcc, kvmap_dtlb_longpath 224 blu,pn %xcc, kvmap_dtlb_vmalloc_addr 228 blu,pn %xcc, kvmap_dtlb_obp
|
D | rtrap_64.S | 41 be,a,pn %icc, __handle_userfpu_continue 92 brnz,pn %l4, rtrap_no_irq_enable 110 bne,pn %icc, to_kernel 140 bne,pn %xcc, __handle_preemption 142 bne,pn %xcc, __handle_signal 144 brnz,pn %o2, __handle_user_windows 151 bne,pn %xcc, __handle_userfpu 202 brnz,pn %l3, kern_rtt 265 brz,pn %g1, kern_rtt_fill 281 bne,pn %xcc, kern_fpucheck [all …]
|
D | syscalls.S | 159 brnz,pn %o0, 3f 174 bgeu,pn %xcc, 3f 189 brnz,pn %o0, 3f 204 bgeu,pn %xcc, 3f 223 bgeu,pn %xcc, linux_sparc_ni_syscall ! CTI 234 bne,pn %icc, linux_syscall_trace32 ! CTI 247 bgeu,pn %xcc, linux_sparc_ni_syscall ! CTI 258 bne,pn %icc, linux_syscall_trace ! CTI Group 271 bgeu,pn %xcc, 1f 280 bne,pn %icc, linux_syscall_trace2 [all …]
|
D | itlb_miss.S | 6 brz,pn %g5, kvmap_itlb ! Context 0 processing 12 bne,pn %xcc, tsb_miss_itlb ! Miss 16 be,pn %xcc, tsb_do_fault
|
D | urtt_fill.S | 36 brnz,pn %g3, 1f 58 brnz,pn %l3, 1f 67 bne,pn %xcc, 2f
|
D | sun4v_tlb_miss.S | 25 brz,pn CTX, ZERO_CTX_LABEL; \ 61 bne,a,pn %xcc, tsb_miss_page_table_walk 64 be,a,pn %xcc, tsb_do_fault 84 brnz,pn %o0, sun4v_itlb_error 107 bne,a,pn %xcc, tsb_miss_page_table_walk 127 brnz,pn %o0, sun4v_dtlb_error 144 bgu,pn %xcc, winfix_trampoline 157 brz,pn %g5, kvmap_itlb_4v 169 brz,pn %g5, kvmap_dtlb_4v
|
D | dtlb_miss.S | 6 brz,pn %g5, kvmap_dtlb ! Context 0 processing 12 bne,pn %xcc, tsb_miss_dtlb ! Miss
|
D | sun4v_ivec.S | 22 be,pn %xcc, sun4v_cpu_mondo_queue_empty 70 be,pn %xcc, sun4v_dev_mondo_queue_empty 128 be,pn %xcc, sun4v_res_mondo_queue_empty 143 brnz,pn %g1, sun4v_res_mondo_queue_full 239 be,pn %xcc, sun4v_nonres_mondo_queue_empty 254 brnz,pn %g1, sun4v_nonres_mondo_queue_full
|
D | spiterrs.S | 56 be,pn %xcc, 1f 67 be,pn %xcc, 1f 137 bne,pn %xcc, __spitfire_access_error 167 blu,pn %xcc, 1f 169 bgu,pn %xcc, 1f
|
D | fpu_traps.S | 30 bne,pn %icc, 2f 33 bne,pn %icc, 1f 217 bne,pn %xcc, do_fptrap_after_fsr 223 bne,pn %xcc, do_fptrap_after_fsr 226 bne,pn %xcc, do_fptrap_after_fsr 237 bne,pn %xcc, do_fptrap_after_fsr 362 be,pn %icc, 4f 367 be,pn %icc, 5f
|
D | helpers.S | 6 brz,pn %g1, 2f 34 1: brz,pn %g2, 2f
|
D | mdesc.c | 518 u64 pn = mdesc_node_by_name(hp, MDESC_NODE_NULL, "platform"); in report_platform_properties() local 522 if (pn == MDESC_NODE_NULL) { in report_platform_properties() 527 s = mdesc_get_property(hp, pn, "banner-name", NULL); in report_platform_properties() 529 s = mdesc_get_property(hp, pn, "name", NULL); in report_platform_properties() 532 v = mdesc_get_property(hp, pn, "hostid", NULL); in report_platform_properties() 535 v = mdesc_get_property(hp, pn, "serial#", NULL); in report_platform_properties() 538 v = mdesc_get_property(hp, pn, "stick-frequency", NULL); in report_platform_properties() 540 v = mdesc_get_property(hp, pn, "mac-address", NULL); in report_platform_properties() 543 v = mdesc_get_property(hp, pn, "watchdog-resolution", NULL); in report_platform_properties() 546 v = mdesc_get_property(hp, pn, "watchdog-max-timeout", NULL); in report_platform_properties() [all …]
|
D | tsb.S | 167 bne,pn %xcc, winfix_trampoline 192 bne,pn %xcc, tsb_itlb_load 230 be,pn %xcc, tsb_do_fault 272 bne,pn %xcc, tsb_do_itlb_fault 349 bne,pn %icc, 1b 357 bne,pn %xcc, 1b 490 bne,pn %xcc, 80f /* Skip it */
|
D | pci_sun4v_asm.S | 22 brnz,pn %o0, 1f 72 brnz,a,pn %o1, 1f 92 brnz,a,pn %o1, 1f
|
D | etrap_64.S | 39 bne,pn %xcc, 1f 47 brnz,pn %g3, 1f 89 bne,pn %xcc, 3f 201 brnz,pn %g3, finish_tl1_capture
|
D | hvtramp.S | 66 brnz,pn %o0, 80f 78 brnz,pn %o0, 80f
|
D | setup_64.c | 469 u64 pn; in mdesc_cpu_hwcap_list() local 475 pn = mdesc_node_by_name(hp, MDESC_NODE_NULL, "cpu"); in mdesc_cpu_hwcap_list() 476 if (pn == MDESC_NODE_NULL) in mdesc_cpu_hwcap_list() 479 prop = mdesc_get_property(hp, pn, "hwcap-list", &len); in mdesc_cpu_hwcap_list()
|
D | dtlb_prot.S | 28 bgu,pn %xcc, winfix_trampoline ! Yes, perform winfixup
|
D | ivec.S | 19 bgeu,pn %xcc, do_ivec_xcall
|
D | una_asm_64.S | 15 be,pn %icc, 2f 72 bge,pn %icc, 9f
|
D | head_64.S | 326 bne,pn %icc, 80f 389 bne,pn %icc, 89f 405 bne,pn %icc, 4f 417 bne,pn %xcc, 49f 459 bne,pn %icc, 49f
|
D | cherrs.S | 187 bne,a,pn %xcc, do_dcpe_tl1_fatal ! Yep, irrecoverable 238 bne,a,pn %xcc, do_icpe_tl1_fatal ! Yep, irrecoverable 323 brz,pn %g3, 80f 333 bne,pn %xcc, 80f
|
D | hvcalls.S | 143 brnz,pn %o0, 1f 269 be,a,pn %icc, 1f 272 be,a,pn %icc, 1f
|
D | misctrap.S | 38 bgu,pn %icc, winfix_mna
|
D | sys32.S | 63 bl,pn %xcc, do_einval 65 bg,pn %xcc, do_einval
|
D | trampoline_64.S | 109 brnz,pn %g1, 1b 329 brnz,pn %g1, 1b
|
D | winfixup.S | 93 be,pn %xcc, 1f
|
/linux-4.4.14/net/ipv4/netfilter/ |
D | nf_conntrack_proto_icmp.c | 343 static int icmp_kmemdup_sysctl_table(struct nf_proto_net *pn, in icmp_kmemdup_sysctl_table() argument 347 pn->ctl_table = kmemdup(icmp_sysctl_table, in icmp_kmemdup_sysctl_table() 350 if (!pn->ctl_table) in icmp_kmemdup_sysctl_table() 353 pn->ctl_table[0].data = &in->timeout; in icmp_kmemdup_sysctl_table() 358 static int icmp_kmemdup_compat_sysctl_table(struct nf_proto_net *pn, in icmp_kmemdup_compat_sysctl_table() argument 363 pn->ctl_compat_table = kmemdup(icmp_compat_sysctl_table, in icmp_kmemdup_compat_sysctl_table() 366 if (!pn->ctl_compat_table) in icmp_kmemdup_compat_sysctl_table() 369 pn->ctl_compat_table[0].data = &in->timeout; in icmp_kmemdup_compat_sysctl_table() 379 struct nf_proto_net *pn = &in->pn; in icmp_init_net() local 383 ret = icmp_kmemdup_compat_sysctl_table(pn, in); in icmp_init_net() [all …]
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
D | omapdss-boot-init.c | 163 struct device_node *pn; in omapdss_walk_device() local 165 pn = of_graph_get_remote_port_parent(n); in omapdss_walk_device() 167 if (!pn) in omapdss_walk_device() 170 if (!of_device_is_available(pn) || omapdss_list_contains(pn)) { in omapdss_walk_device() 171 of_node_put(pn); in omapdss_walk_device() 175 omapdss_walk_device(pn, false); in omapdss_walk_device()
|
/linux-4.4.14/arch/cris/arch-v10/lib/ |
D | usercopy.c | 33 unsigned long __copy_user(void __user *pdst, const void *psrc, unsigned long pn) in __copy_user() argument 45 register int n __asm__ ("r12") = pn; in __copy_user() 196 unsigned long pn) in __copy_user_zeroing() argument 208 register int n __asm__ ("r12") = pn; in __copy_user_zeroing() 375 unsigned long __do_clear_user(void __user *pto, unsigned long pn) in __do_clear_user() argument 386 register int n __asm__ ("r12") = pn; in __do_clear_user()
|
D | string.c | 43 memcpy(void *pdst, const void *psrc, size_t pn) in memcpy() argument 55 register int n __asm__ ("r12") = pn; in memcpy()
|
/linux-4.4.14/arch/cris/arch-v32/lib/ |
D | usercopy.c | 29 unsigned long __copy_user(void __user *pdst, const void *psrc, unsigned long pn) in __copy_user() argument 41 register int n __asm__ ("r12") = pn; in __copy_user() 163 unsigned long pn) in __copy_user_zeroing() argument 175 register int n __asm__ ("r12") = pn; in __copy_user_zeroing() 326 unsigned long __do_clear_user(void __user *pto, unsigned long pn) in __do_clear_user() argument 337 register int n __asm__ ("r12") = pn; in __do_clear_user()
|
D | string.c | 43 memcpy(void *pdst, const void *psrc, size_t pn) in memcpy() argument 55 register int n __asm__ ("r12") = pn; in memcpy()
|
/linux-4.4.14/net/l2tp/ |
D | l2tp_eth.c | 85 struct l2tp_eth_net *pn = l2tp_eth_pernet(dev_net(dev)); in l2tp_eth_dev_uninit() local 87 spin_lock(&pn->l2tp_eth_lock); in l2tp_eth_dev_uninit() 89 spin_unlock(&pn->l2tp_eth_lock); in l2tp_eth_dev_uninit() 218 struct l2tp_eth_net *pn; in l2tp_eth_create() local 287 pn = l2tp_eth_pernet(dev_net(dev)); in l2tp_eth_create() 288 spin_lock(&pn->l2tp_eth_lock); in l2tp_eth_create() 289 list_add(&priv->list, &pn->l2tp_eth_dev_list); in l2tp_eth_create() 290 spin_unlock(&pn->l2tp_eth_lock); in l2tp_eth_create() 305 struct l2tp_eth_net *pn = net_generic(net, l2tp_eth_net_id); in l2tp_eth_init_net() local 307 INIT_LIST_HEAD(&pn->l2tp_eth_dev_list); in l2tp_eth_init_net() [all …]
|
D | l2tp_core.c | 169 l2tp_session_id_hash_2(struct l2tp_net *pn, u32 session_id) in l2tp_session_id_hash_2() argument 171 return &pn->l2tp_session_hlist[hash_32(session_id, L2TP_HASH_BITS_2)]; in l2tp_session_id_hash_2() 224 struct l2tp_net *pn = l2tp_pernet(net); in l2tp_session_find_2() local 226 l2tp_session_id_hash_2(pn, session_id); in l2tp_session_find_2() 308 struct l2tp_net *pn = l2tp_pernet(net); in l2tp_session_find_by_ifname() local 314 hlist_for_each_entry_rcu(session, &pn->l2tp_session_hlist[hash], global_hlist) { in l2tp_session_find_by_ifname() 333 struct l2tp_net *pn = l2tp_pernet(net); in l2tp_tunnel_find() local 336 list_for_each_entry_rcu(tunnel, &pn->l2tp_tunnel_list, list) { in l2tp_tunnel_find() 350 struct l2tp_net *pn = l2tp_pernet(net); in l2tp_tunnel_find_nth() local 355 list_for_each_entry_rcu(tunnel, &pn->l2tp_tunnel_list, list) { in l2tp_tunnel_find_nth() [all …]
|
/linux-4.4.14/drivers/staging/iio/resolver/ |
D | ad2s1200.c | 108 int pn, ret = 0; in ad2s1200_probe() local 111 for (pn = 0; pn < AD2S1200_PN; pn++) { in ad2s1200_probe() 112 ret = devm_gpio_request_one(&spi->dev, pins[pn], GPIOF_DIR_OUT, in ad2s1200_probe() 116 pins[pn]); in ad2s1200_probe()
|
/linux-4.4.14/drivers/md/persistent-data/ |
D | dm-btree.c | 527 struct btree_node *ln, *rn, *pn; in btree_split_sibling() local 560 pn = dm_block_data(parent); in btree_split_sibling() 563 memcpy_disk(value_ptr(pn, parent_index), in btree_split_sibling() 569 r = insert_at(sizeof(__le64), pn, parent_index + 1, in btree_split_sibling() 614 struct btree_node *pn, *ln, *rn; in btree_split_beneath() local 629 pn = dm_block_data(new_parent); in btree_split_beneath() 633 nr_left = le32_to_cpu(pn->header.nr_entries) / 2; in btree_split_beneath() 634 nr_right = le32_to_cpu(pn->header.nr_entries) - nr_left; in btree_split_beneath() 636 ln->header.flags = pn->header.flags; in btree_split_beneath() 638 ln->header.max_entries = pn->header.max_entries; in btree_split_beneath() [all …]
|
/linux-4.4.14/drivers/staging/rtl8192u/ieee80211/ |
D | ieee80211_crypt_ccmp.c | 116 u8 *pn, size_t dlen, u8 *b0, u8 *auth, in ccmp_init_blocks() argument 153 memcpy(b0 + 8, pn, CCMP_PN_LEN); in ccmp_init_blocks() 274 u8 pn[6]; in ieee80211_ccmp_decrypt() local 306 pn[0] = pos[7]; in ieee80211_ccmp_decrypt() 307 pn[1] = pos[6]; in ieee80211_ccmp_decrypt() 308 pn[2] = pos[5]; in ieee80211_ccmp_decrypt() 309 pn[3] = pos[4]; in ieee80211_ccmp_decrypt() 310 pn[4] = pos[1]; in ieee80211_ccmp_decrypt() 311 pn[5] = pos[0]; in ieee80211_ccmp_decrypt() 314 if (memcmp(pn, key->rx_pn, CCMP_PN_LEN) <= 0) { in ieee80211_ccmp_decrypt() [all …]
|
/linux-4.4.14/drivers/staging/rtl8192e/ |
D | rtllib_crypt_ccmp.c | 111 u8 *pn, size_t dlen, u8 *b0, u8 *auth, in ccmp_init_blocks() argument 145 memcpy(b0 + 8, pn, CCMP_PN_LEN); in ccmp_init_blocks() 266 u8 pn[6]; in rtllib_ccmp_decrypt() local 298 pn[0] = pos[7]; in rtllib_ccmp_decrypt() 299 pn[1] = pos[6]; in rtllib_ccmp_decrypt() 300 pn[2] = pos[5]; in rtllib_ccmp_decrypt() 301 pn[3] = pos[4]; in rtllib_ccmp_decrypt() 302 pn[4] = pos[1]; in rtllib_ccmp_decrypt() 303 pn[5] = pos[0]; in rtllib_ccmp_decrypt() 305 if (memcmp(pn, key->rx_pn, CCMP_PN_LEN) <= 0) { in rtllib_ccmp_decrypt() [all …]
|
/linux-4.4.14/include/net/netns/ |
D | conntrack.h | 27 struct nf_proto_net pn; member 32 struct nf_proto_net pn; member 46 struct nf_proto_net pn; member 51 struct nf_proto_net pn; member
|
/linux-4.4.14/net/ipv6/netfilter/ |
D | nf_conntrack_proto_icmpv6.c | 339 static int icmpv6_kmemdup_sysctl_table(struct nf_proto_net *pn, in icmpv6_kmemdup_sysctl_table() argument 343 pn->ctl_table = kmemdup(icmpv6_sysctl_table, in icmpv6_kmemdup_sysctl_table() 346 if (!pn->ctl_table) in icmpv6_kmemdup_sysctl_table() 349 pn->ctl_table[0].data = &in->timeout; in icmpv6_kmemdup_sysctl_table() 357 struct nf_proto_net *pn = &in->pn; in icmpv6_init_net() local 361 return icmpv6_kmemdup_sysctl_table(pn, in); in icmpv6_init_net() 366 return &net->ct.nf_ct_proto.icmpv6.pn; in icmpv6_get_net_proto()
|
/linux-4.4.14/drivers/staging/rdma/ipath/ |
D | ipath_verbs_mcast.c | 167 struct rb_node *pn = NULL; in ipath_mcast_add() local 176 pn = *n; in ipath_mcast_add() 177 tmcast = rb_entry(pn, struct ipath_mcast, rb_node); in ipath_mcast_add() 182 n = &pn->rb_left; in ipath_mcast_add() 186 n = &pn->rb_right; in ipath_mcast_add() 224 rb_link_node(&mcast->rb_node, pn, n); in ipath_mcast_add()
|
/linux-4.4.14/net/core/ |
D | pktgen.c | 454 static void pktgen_run_all_threads(struct pktgen_net *pn); 455 static void pktgen_reset_all_threads(struct pktgen_net *pn); 456 static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn); 488 struct pktgen_net *pn = net_generic(current->nsproxy->net_ns, pg_net_id); in pgctrl_write() local 505 pktgen_stop_all_threads_ifs(pn); in pgctrl_write() 508 pktgen_run_all_threads(pn); in pgctrl_write() 511 pktgen_reset_all_threads(pn); in pgctrl_write() 1946 static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn, in __pktgen_NN_threads() argument 1953 list_for_each_entry(t, &pn->pktgen_threads, th_list) { in __pktgen_NN_threads() 1969 static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname) in pktgen_mark_device() argument [all …]
|
D | neighbour.c | 1694 struct pneigh_entry *pn; in neigh_add() local 1697 pn = pneigh_lookup(tbl, net, dst, dev, 1); in neigh_add() 1698 if (pn) { in neigh_add() 1699 pn->flags = ndm->ndm_flags; in neigh_add() 2201 static int pneigh_fill_info(struct sk_buff *skb, struct pneigh_entry *pn, in pneigh_fill_info() argument 2216 ndm->ndm_flags = pn->flags | NTF_PROXY; in pneigh_fill_info() 2218 ndm->ndm_ifindex = pn->dev ? pn->dev->ifindex : 0; in pneigh_fill_info() 2221 if (nla_put(skb, NDA_DST, tbl->key_len, pn->key)) in pneigh_fill_info() 2602 struct pneigh_entry *pn = NULL; in pneigh_get_first() local 2607 pn = tbl->phash_buckets[bucket]; in pneigh_get_first() [all …]
|
/linux-4.4.14/drivers/misc/mic/scif/ |
D | scif_fd.c | 94 int pn; in scif_fdioctl() local 96 if (copy_from_user(&pn, argp, sizeof(pn))) in scif_fdioctl() 99 pn = scif_bind(priv, pn); in scif_fdioctl() 100 if (pn < 0) in scif_fdioctl() 101 return pn; in scif_fdioctl() 103 if (copy_to_user(argp, &pn, sizeof(pn))) in scif_fdioctl()
|
D | scif_api.c | 336 int scif_bind(scif_epd_t epd, u16 pn) in scif_bind() argument 344 ep, scif_ep_states[ep->state], pn); in scif_bind() 345 if (pn) { in scif_bind() 351 if (pn < SCIF_ADMIN_PORT_END && !capable(CAP_SYS_ADMIN)) { in scif_bind() 366 if (pn) { in scif_bind() 367 tmp = scif_rsrv_port(pn); in scif_bind() 368 if (tmp != pn) { in scif_bind() 373 pn = scif_get_new_port(); in scif_bind() 374 if (!pn) { in scif_bind() 382 ep->port.port = pn; in scif_bind() [all …]
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | verbs_mcast.c | 174 struct rb_node *pn = NULL; in mcast_add() local 183 pn = *n; in mcast_add() 184 tmcast = rb_entry(pn, struct hfi1_mcast, rb_node); in mcast_add() 189 n = &pn->rb_left; in mcast_add() 193 n = &pn->rb_right; in mcast_add() 231 rb_link_node(&mcast->rb_node, pn, n); in mcast_add()
|
/linux-4.4.14/drivers/infiniband/hw/qib/ |
D | qib_verbs_mcast.c | 157 struct rb_node *pn = NULL; in qib_mcast_add() local 166 pn = *n; in qib_mcast_add() 167 tmcast = rb_entry(pn, struct qib_mcast, rb_node); in qib_mcast_add() 172 n = &pn->rb_left; in qib_mcast_add() 176 n = &pn->rb_right; in qib_mcast_add() 214 rb_link_node(&mcast->rb_node, pn, n); in qib_mcast_add()
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/ |
D | lib.c | 999 u8 *pn = seq.ccmp.pn; in iwlagn_wowlan_program_keys() local 1005 aes_tx_sc->pn = cpu_to_le64( in iwlagn_wowlan_program_keys() 1006 (u64)pn[5] | in iwlagn_wowlan_program_keys() 1007 ((u64)pn[4] << 8) | in iwlagn_wowlan_program_keys() 1008 ((u64)pn[3] << 16) | in iwlagn_wowlan_program_keys() 1009 ((u64)pn[2] << 24) | in iwlagn_wowlan_program_keys() 1010 ((u64)pn[1] << 32) | in iwlagn_wowlan_program_keys() 1011 ((u64)pn[0] << 40)); in iwlagn_wowlan_program_keys() 1020 u8 *pn = seq.ccmp.pn; in iwlagn_wowlan_program_keys() local 1023 aes_sc[i].pn = cpu_to_le64( in iwlagn_wowlan_program_keys() [all …]
|
D | commands.h | 3838 __le64 pn; member
|
/linux-4.4.14/arch/sparc/mm/ |
D | ultra.S | 37 bne,pn %icc, __spitfire_flush_tlb_mm_slow 67 be,pn %icc, 1f 97 be,pn %icc, 2f 119 be,pn %xcc, 2f 189 be,pn %xcc, 2f ! Nope, branch 246 be,pn %icc, 1f 274 be,pn %icc, 2f 319 brnz,pn %o0, __hypervisor_tlb_tl0_error 333 brnz,pn %o0, __hypervisor_tlb_tl0_error 350 brnz,pn %o0, __hypervisor_tlb_tl0_error [all …]
|
/linux-4.4.14/include/net/netfilter/ |
D | nf_conntrack_l4proto.h | 134 static inline void nf_ct_kfree_compat_sysctl_table(struct nf_proto_net *pn) in nf_ct_kfree_compat_sysctl_table() argument 137 kfree(pn->ctl_compat_table); in nf_ct_kfree_compat_sysctl_table() 138 pn->ctl_compat_table = NULL; in nf_ct_kfree_compat_sysctl_table()
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/ |
D | d3.c | 283 aes_tx_sc->pn = cpu_to_le64(pn64); in iwl_mvm_wowlan_program_keys() 293 u8 *pn = seq.ccmp.pn; in iwl_mvm_wowlan_program_keys() local 296 aes_sc[i].pn = cpu_to_le64((u64)pn[5] | in iwl_mvm_wowlan_program_keys() 297 ((u64)pn[4] << 8) | in iwl_mvm_wowlan_program_keys() 298 ((u64)pn[3] << 16) | in iwl_mvm_wowlan_program_keys() 299 ((u64)pn[2] << 24) | in iwl_mvm_wowlan_program_keys() 300 ((u64)pn[1] << 32) | in iwl_mvm_wowlan_program_keys() 301 ((u64)pn[0] << 40)); in iwl_mvm_wowlan_program_keys() 1336 u64 pn; in iwl_mvm_aes_sc_to_seq() local 1338 pn = le64_to_cpu(sc->pn); in iwl_mvm_aes_sc_to_seq() [all …]
|
D | tx.c | 281 u64 pn; in iwl_mvm_set_tx_cmd_crypto() local 287 pn = atomic64_inc_return(&keyconf->tx_pn); in iwl_mvm_set_tx_cmd_crypto() 288 crypto_hdr[0] = pn; in iwl_mvm_set_tx_cmd_crypto() 291 crypto_hdr[1] = pn >> 8; in iwl_mvm_set_tx_cmd_crypto() 292 crypto_hdr[4] = pn >> 16; in iwl_mvm_set_tx_cmd_crypto() 293 crypto_hdr[5] = pn >> 24; in iwl_mvm_set_tx_cmd_crypto() 294 crypto_hdr[6] = pn >> 32; in iwl_mvm_set_tx_cmd_crypto() 295 crypto_hdr[7] = pn >> 40; in iwl_mvm_set_tx_cmd_crypto()
|
D | sta.c | 1331 const u8 *pn; in iwl_mvm_send_sta_igtk() local 1335 pn = seq.aes_cmac.pn; in iwl_mvm_send_sta_igtk() 1336 igtk_cmd.receive_seq_cnt = cpu_to_le64(((u64) pn[5] << 0) | in iwl_mvm_send_sta_igtk() 1337 ((u64) pn[4] << 8) | in iwl_mvm_send_sta_igtk() 1338 ((u64) pn[3] << 16) | in iwl_mvm_send_sta_igtk() 1339 ((u64) pn[2] << 24) | in iwl_mvm_send_sta_igtk() 1340 ((u64) pn[1] << 32) | in iwl_mvm_send_sta_igtk() 1341 ((u64) pn[0] << 40)); in iwl_mvm_send_sta_igtk()
|
D | fw-api-d3.h | 272 __le64 pn; member
|
/linux-4.4.14/net/bluetooth/rfcomm/ |
D | core.c | 924 struct rfcomm_pn *pn; in rfcomm_send_pn() local 932 hdr->len = __len8(sizeof(*mcc) + sizeof(*pn)); in rfcomm_send_pn() 936 mcc->len = __len8(sizeof(*pn)); in rfcomm_send_pn() 938 pn = (void *) ptr; ptr += sizeof(*pn); in rfcomm_send_pn() 939 pn->dlci = d->dlci; in rfcomm_send_pn() 940 pn->priority = d->priority; in rfcomm_send_pn() 941 pn->ack_timer = 0; in rfcomm_send_pn() 942 pn->max_retrans = 0; in rfcomm_send_pn() 945 pn->flow_ctrl = cr ? 0xf0 : 0xe0; in rfcomm_send_pn() 946 pn->credits = RFCOMM_DEFAULT_CREDITS; in rfcomm_send_pn() [all …]
|
/linux-4.4.14/drivers/acpi/ |
D | glue.c | 166 struct acpi_device_physical_node *physical_node, *pn; in acpi_bind_one() local 200 list_for_each_entry(pn, &acpi_dev->physical_node_list, node) { in acpi_bind_one() 202 if (pn->dev == dev) { in acpi_bind_one() 214 if (pn->node_id == node_id) { in acpi_bind_one() 215 physnode_list = &pn->node; in acpi_bind_one()
|
D | scan.c | 120 struct acpi_device_physical_node *pn; in acpi_scan_is_offline() local 129 list_for_each_entry(pn, &adev->physical_node_list, node) in acpi_scan_is_offline() 130 if (device_supports_offline(pn->dev) && !pn->dev->offline) { in acpi_scan_is_offline() 132 kobject_uevent(&pn->dev->kobj, KOBJ_CHANGE); in acpi_scan_is_offline() 146 struct acpi_device_physical_node *pn; in acpi_bus_offline() local 160 list_for_each_entry(pn, &device->physical_node_list, node) { in acpi_bus_offline() 165 if (pn->put_online) in acpi_bus_offline() 168 pn->put_online = false; in acpi_bus_offline() 170 ret = device_offline(pn->dev); in acpi_bus_offline() 175 pn->put_online = !ret; in acpi_bus_offline() [all …]
|
/linux-4.4.14/drivers/crypto/caam/ |
D | pdb.h | 202 u32 pn; member 214 u32 pn; member 236 u32 pn; member 248 u32 pn; member
|
/linux-4.4.14/arch/avr32/kernel/ |
D | cpu.c | 209 u16 pn; member 214 { .mid = 0x1f, .pn = 0x1e82, .name = "AT32AP700x" }, 245 unsigned int pn = avr32_get_product_number(cpu); in get_chip_name() local 248 if (chip_names[i].mid == mid && chip_names[i].pn == pn) in get_chip_name()
|
/linux-4.4.14/drivers/message/fusion/ |
D | mptfc.c | 436 u64 pn, nn; in mptfc_register_dev() local 449 pn = (u64)ri->pg0.WWPN.High << 32 | (u64)ri->pg0.WWPN.Low; in mptfc_register_dev() 450 if (pn == rport_ids.port_name) { /* match */ in mptfc_register_dev() 491 pn = (u64)ri->pg0.WWPN.High << 32 | (u64)ri->pg0.WWPN.Low; in mptfc_register_dev() 500 (unsigned long long)pn, in mptfc_register_dev() 579 u64 nn, pn; in mptfc_dump_lun_info() local 583 pn = (u64)ri->pg0.WWPN.High << 32 | (u64)ri->pg0.WWPN.Low; in mptfc_dump_lun_info() 593 (unsigned long long)pn, in mptfc_dump_lun_info() 1092 u64 pn; in mptfc_setup_reset() local 1110 pn = (u64)ri->pg0.WWPN.High << 32 | in mptfc_setup_reset() [all …]
|
/linux-4.4.14/fs/jfs/ |
D | jfs_logmgr.c | 190 static int lbmRead(struct jfs_log * log, int pn, struct lbuf ** bpp); 532 tblk->pn = log->page; in lmWriteRecord() 577 int pn; /* current page number */ in lmNextPage() local 583 pn = log->page; in lmNextPage() 609 if (tblk && tblk->pn == pn) { in lmNextPage() 647 log->page = (pn == log->size - 1) ? 2 : pn + 1; in lmNextPage() 773 gcpn = list_entry(log->cqueue.next, struct tblock, cqueue)->pn; in lmGCwrite() 776 if (tblk->pn != gcpn) in lmGCwrite() 1899 static struct lbuf *lbmAllocate(struct jfs_log * log, int pn) in lbmAllocate() argument 1917 bp->l_pn = pn; in lbmAllocate() [all …]
|
D | jfs_dtree.c | 3012 s16 pn; in jfs_readdir() member 3148 if (dtoffset->pn == 0) { in jfs_readdir() 3157 dtoffset->pn = 1; in jfs_readdir() 3295 dtoffset->pn++; in jfs_readdir() 3421 s16 pn; in dtReadNext() member 3429 int pn; in dtReadNext() local 3444 pn = dtoffset->pn - 1; /* Now pn = 0 represents leftmost leaf */ in dtReadNext() 3448 if (pn == 0) { in dtReadNext() 3459 dtoffset->pn++; in dtReadNext() 3471 if (pn > 1) in dtReadNext() [all …]
|
D | jfs_txnmgr.h | 59 s32 pn; /* commit record log page number */ member
|
/linux-4.4.14/drivers/media/i2c/ |
D | vpx3220.c | 479 u16 pn; in vpx3220_probe() local 513 pn = (i2c_smbus_read_byte_data(client, 0x02) << 8) + in vpx3220_probe() 516 switch (pn) { in vpx3220_probe() 533 ver, pn, client->addr << 1, client->adapter->name); in vpx3220_probe()
|
/linux-4.4.14/arch/mips/alchemy/common/ |
D | clock.c | 265 static struct clk __init *alchemy_clk_setup_sysbus(const char *pn) in alchemy_clk_setup_sysbus() argument 271 pn, 0, 1, v); in alchemy_clk_setup_sysbus() 279 static struct clk __init *alchemy_clk_setup_periph(const char *pn) in alchemy_clk_setup_periph() argument 285 pn, 0, 1, 2); in alchemy_clk_setup_periph() 293 static struct clk __init *alchemy_clk_setup_mem(const char *pn, int ct) in alchemy_clk_setup_mem() argument 318 c = clk_register_fixed_factor(NULL, ALCHEMY_MEM_CLK, pn, in alchemy_clk_setup_mem() 327 static struct clk __init *alchemy_clk_setup_lrclk(const char *pn, int t) in alchemy_clk_setup_lrclk() argument 348 pn, 0, 1, v); in alchemy_clk_setup_lrclk()
|
/linux-4.4.14/net/irda/ |
D | discovery.c | 261 struct irda_device_info *irlmp_copy_discoveries(hashbin_t *log, int *pn, in irlmp_copy_discoveries() argument 271 IRDA_ASSERT(pn != NULL, return NULL;); in irlmp_copy_discoveries() 312 *pn = i; in irlmp_copy_discoveries()
|
D | irlmp.c | 917 struct irda_device_info *irlmp_get_discoveries(int *pn, __u16 mask, int nslots) in irlmp_get_discoveries() argument 937 return irlmp_copy_discoveries(irlmp->cachelog, pn, mask, TRUE); in irlmp_get_discoveries()
|
/linux-4.4.14/fs/gfs2/ |
D | ops_fstype.c | 848 struct inode *pn = NULL; in init_per_node() local 860 pn = gfs2_lookup_simple(master, "per_node"); in init_per_node() 861 if (IS_ERR(pn)) { in init_per_node() 862 error = PTR_ERR(pn); in init_per_node() 868 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf); in init_per_node() 876 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf); in init_per_node() 883 iput(pn); in init_per_node() 884 pn = NULL; in init_per_node() 913 if (pn) in init_per_node() 914 iput(pn); in init_per_node()
|
/linux-4.4.14/include/net/irda/ |
D | discovery.h | 92 struct irda_device_info *irlmp_copy_discoveries(hashbin_t *log, int *pn,
|
D | irlmp.h | 227 discinfo_t *irlmp_get_discoveries(int *pn, __u16 mask, int nslots);
|
/linux-4.4.14/drivers/scsi/libfc/ |
D | fc_disc.c | 589 struct fc_ns_gid_pn *pn; in fc_disc_gpn_id_resp() local 606 sizeof(*cp) + sizeof(*pn)) in fc_disc_gpn_id_resp() 608 pn = (struct fc_ns_gid_pn *)(cp + 1); in fc_disc_gpn_id_resp() 609 port_name = get_unaligned_be64(&pn->fn_wwpn); in fc_disc_gpn_id_resp()
|
/linux-4.4.14/kernel/ |
D | cpuset.c | 128 int pn; member 690 csa[i]->pn = i; in generate_sched_domains() 697 int apn = a->pn; in generate_sched_domains() 701 int bpn = b->pn; in generate_sched_domains() 707 if (c->pn == bpn) in generate_sched_domains() 708 c->pn = apn; in generate_sched_domains() 733 int apn = a->pn; in generate_sched_domains() 758 if (apn == b->pn) { in generate_sched_domains() 765 b->pn = -1; in generate_sched_domains()
|
/linux-4.4.14/drivers/infiniband/ulp/ipoib/ |
D | ipoib_multicast.c | 183 struct rb_node **n = &priv->multicast_tree.rb_node, *pn = NULL; in __ipoib_mcast_add() local 189 pn = *n; in __ipoib_mcast_add() 190 tmcast = rb_entry(pn, struct ipoib_mcast, rb_node); in __ipoib_mcast_add() 195 n = &pn->rb_left; in __ipoib_mcast_add() 197 n = &pn->rb_right; in __ipoib_mcast_add() 202 rb_link_node(&mcast->rb_node, pn, n); in __ipoib_mcast_add()
|
D | ipoib_main.c | 512 struct rb_node *pn = NULL; in __path_add() local 517 pn = *n; in __path_add() 518 tpath = rb_entry(pn, struct ipoib_path, rb_node); in __path_add() 523 n = &pn->rb_left; in __path_add() 525 n = &pn->rb_right; in __path_add() 530 rb_link_node(&path->rb_node, pn, n); in __path_add()
|
/linux-4.4.14/drivers/gpu/drm/msm/edp/ |
D | edp.h | 83 u32 pixel_rate, u32 *pm, u32 *pn);
|
D | edp_ctrl.c | 1329 u32 pixel_rate, u32 *pm, u32 *pn) in msm_edp_ctrl_pixel_clock_valid() argument 1350 if (pn) in msm_edp_ctrl_pixel_clock_valid() 1351 *pn = divs[i].n; in msm_edp_ctrl_pixel_clock_valid()
|
/linux-4.4.14/arch/sparc/crypto/ |
D | sha1_asm.S | 14 bne,pn %xcc, 10f
|
D | md5_asm.S | 13 bne,pn %xcc, 10f
|
D | sha256_asm.S | 17 bne,pn %xcc, 10f
|
D | sha512_asm.S | 17 bne,pn %xcc, 10f
|
/linux-4.4.14/drivers/misc/mei/ |
D | client.c | 145 const uuid_le *pn; in __mei_me_cl_by_uuid() local 150 pn = &me_cl->props.protocol_name; in __mei_me_cl_by_uuid() 151 if (uuid_le_cmp(*uuid, *pn) == 0) in __mei_me_cl_by_uuid() 225 const uuid_le *pn; in __mei_me_cl_by_uuid_id() local 230 pn = &me_cl->props.protocol_name; in __mei_me_cl_by_uuid_id() 231 if (uuid_le_cmp(*uuid, *pn) == 0 && in __mei_me_cl_by_uuid_id()
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | f_mass_storage.h | 154 const char *pn);
|
D | f_mass_storage.c | 2964 const char *pn) in fsg_common_set_inquiry_string() argument 2973 pn ?: ((*common->luns)->cdrom in fsg_common_set_inquiry_string()
|
/linux-4.4.14/include/linux/ |
D | scif.h | 204 int scif_bind(scif_epd_t epd, u16 pn);
|
/linux-4.4.14/drivers/net/usb/ |
D | pegasus.c | 66 #define PEGASUS_DEV(pn, vid, pid, flags) \ argument 67 {.name = pn, .vendor = vid, .device = pid, .private = flags}, 68 #define PEGASUS_DEV_CLASS(pn, vid, pid, dclass, flags) \ argument 69 PEGASUS_DEV(pn, vid, pid, flags) 78 #define PEGASUS_DEV(pn, vid, pid, flags) \ argument 86 #define PEGASUS_DEV_CLASS(pn, vid, pid, dclass, flags) \ argument
|
/linux-4.4.14/drivers/net/wireless/mwifiex/ |
D | sta_cmd.c | 574 enc_key->pn, enc_key->pn_len); in mwifiex_set_aes_key_v2() 587 memcpy(km->key_param_set.key_params.aes.pn, in mwifiex_set_aes_key_v2() 588 enc_key->pn, enc_key->pn_len); in mwifiex_set_aes_key_v2() 722 memcpy(km->key_param_set.key_params.wapi.pn, enc_key->pn, in mwifiex_cmd_802_11_key_material_v2() 763 memcpy(km->key_param_set.key_params.tkip.pn, in mwifiex_cmd_802_11_key_material_v2() 764 enc_key->pn, enc_key->pn_len); in mwifiex_cmd_802_11_key_material_v2() 859 enc_key->pn, PN_LEN); in mwifiex_cmd_802_11_key_material_v1() 937 memcpy(param->ipn, enc_key->pn, IGTK_PN_LEN); in mwifiex_cmd_802_11_key_material_v1()
|
D | ioctl.h | 250 u8 pn[PN_LEN]; /* packet number */ member
|
D | fw.h | 843 u8 pn[WPA_PN_SIZE]; member 849 u8 pn[WPA_PN_SIZE]; member 855 u8 pn[PN_LEN]; member
|
D | sta_ioctl.c | 1096 memcpy(encrypt_key.pn, kp->seq, kp->seq_len); in mwifiex_set_encode()
|
/linux-4.4.14/drivers/clk/ingenic/ |
D | cgu.c | 125 unsigned *pm, unsigned *pn, unsigned *pod) in ingenic_pll_calc() argument 147 if (pn) in ingenic_pll_calc() 148 *pn = n; in ingenic_pll_calc()
|
/linux-4.4.14/drivers/video/fbdev/ |
D | pxa168fb.h | 214 #define CFG_PALETTE_ENA(pn) ((pn) << 28) argument
|
/linux-4.4.14/arch/sparc/net/ |
D | bpf_jit_asm.S | 8 #define BE_PTR(label) be,pn %xcc, label
|
/linux-4.4.14/arch/s390/hypfs/ |
D | hypfs_diag.c | 120 __u8 pn; member 127 __u8 pn; member
|
/linux-4.4.14/arch/metag/lib/ |
D | usercopy.c | 1045 unsigned long __do_clear_user(void __user *pto, unsigned long pn) in __do_clear_user() argument 1048 register unsigned long n asm ("D1Re0") = pn; in __do_clear_user()
|
/linux-4.4.14/drivers/staging/speakup/ |
D | main.c | 1800 char *pn; in inc_dec_var() local 1814 for (pn = p_header->name; *pn; pn++) { in inc_dec_var() 1815 if (*pn == '_') in inc_dec_var() 1818 *cp++ = *pn; in inc_dec_var()
|
/linux-4.4.14/sound/core/ |
D | control.c | 1607 struct snd_kctl_ioctl *pn; in _snd_ctl_register_ioctl() local 1609 pn = kzalloc(sizeof(struct snd_kctl_ioctl), GFP_KERNEL); in _snd_ctl_register_ioctl() 1610 if (pn == NULL) in _snd_ctl_register_ioctl() 1612 pn->fioctl = fcn; in _snd_ctl_register_ioctl() 1614 list_add_tail(&pn->list, lists); in _snd_ctl_register_ioctl()
|
/linux-4.4.14/drivers/net/wireless/cw1200/ |
D | sta.c | 782 wsm_key->aes_group.rx_seqnum[0] = seq.ccmp.pn[5]; in cw1200_set_key() 783 wsm_key->aes_group.rx_seqnum[1] = seq.ccmp.pn[4]; in cw1200_set_key() 784 wsm_key->aes_group.rx_seqnum[2] = seq.ccmp.pn[3]; in cw1200_set_key() 785 wsm_key->aes_group.rx_seqnum[3] = seq.ccmp.pn[2]; in cw1200_set_key() 786 wsm_key->aes_group.rx_seqnum[4] = seq.ccmp.pn[1]; in cw1200_set_key() 787 wsm_key->aes_group.rx_seqnum[5] = seq.ccmp.pn[0]; in cw1200_set_key()
|
/linux-4.4.14/include/net/ |
D | mac80211.h | 1534 u8 pn[6]; member 1537 u8 pn[6]; member 1540 u8 pn[6]; member 1543 u8 pn[6]; member
|
/linux-4.4.14/drivers/isdn/hardware/mISDN/ |
D | netjet.c | 381 u8 *p, *pn; in read_dma() local 419 pn = bc->hrbuf; in read_dma() 421 stat = isdnhdlc_decode(&bc->hrecv, pn, cnt, &i, in read_dma() 450 pn += i; in read_dma()
|
/linux-4.4.14/drivers/net/wireless/ath/ath10k/ |
D | rx_desc.h | 268 u8 pn[6]; member
|
/linux-4.4.14/drivers/pinctrl/ |
D | pinctrl-single.c | 759 struct pcs_name *pn; in pcs_add_pin() local 782 pn = &pcs->names[i]; in pcs_add_pin() 783 sprintf(pn->name, "%lx.%u", in pcs_add_pin() 785 pin->name = pn->name; in pcs_add_pin()
|
/linux-4.4.14/virt/kvm/ |
D | kvm_main.c | 3501 struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn) in preempt_notifier_to_vcpu() argument 3503 return container_of(pn, struct kvm_vcpu, preempt_notifier); in preempt_notifier_to_vcpu() 3506 static void kvm_sched_in(struct preempt_notifier *pn, int cpu) in kvm_sched_in() argument 3508 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn); in kvm_sched_in() 3518 static void kvm_sched_out(struct preempt_notifier *pn, in kvm_sched_out() argument 3521 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn); in kvm_sched_out()
|
/linux-4.4.14/arch/x86/platform/uv/ |
D | tlb_uv.c | 1778 unsigned long pn; in pq_init() local 1805 pn = uv_gpa_to_gnode(uv_gpa(pqp)); in pq_init() 1807 pn_first = ((unsigned long)pn << UV_PAYLOADQ_PNODE_SHIFT) | first; in pq_init()
|
/linux-4.4.14/drivers/video/fbdev/mmp/hw/ |
D | mmp_ctrl.h | 438 #define CFG_PALETTE_ENA(pn) ((pn)<<28) argument
|
/linux-4.4.14/net/mac802154/ |
D | llsec.c | 342 struct ieee802154_llsec_device_key *pos, *pn; in llsec_dev_free() local 345 list_for_each_entry_safe(pos, pn, &dev->dev.keys, list) { in llsec_dev_free()
|
/linux-4.4.14/mm/ |
D | memcontrol.c | 4129 struct mem_cgroup_per_node *pn; in alloc_mem_cgroup_per_zone_info() local 4142 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp); in alloc_mem_cgroup_per_zone_info() 4143 if (!pn) in alloc_mem_cgroup_per_zone_info() 4147 mz = &pn->zoneinfo[zone]; in alloc_mem_cgroup_per_zone_info() 4153 memcg->nodeinfo[node] = pn; in alloc_mem_cgroup_per_zone_info()
|
D | mmap.c | 381 struct rb_node *nd, *pn = NULL; in browse_rb() local 409 pn = nd; in browse_rb() 414 for (nd = pn; nd; nd = rb_prev(nd)) in browse_rb()
|
/linux-4.4.14/drivers/net/ethernet/renesas/ |
D | ravb_main.c | 877 struct device_node *pn; in ravb_phy_init() local 884 pn = of_parse_phandle(np, "phy-handle", 0); in ravb_phy_init() 885 phydev = of_phy_connect(ndev, pn, ravb_adjust_link, 0, in ravb_phy_init()
|
D | sh_eth.c | 1858 struct device_node *pn; in sh_eth_phy_init() local 1860 pn = of_parse_phandle(np, "phy-handle", 0); in sh_eth_phy_init() 1861 phydev = of_phy_connect(ndev, pn, in sh_eth_phy_init()
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/ |
D | t4_hw.c | 2583 int ec, sn, pn, na; in t4_get_raw_vpd_params() local 2658 FIND_VPD_KW(pn, "PN"); in t4_get_raw_vpd_params() 2669 i = pci_vpd_info_field_size(vpd + pn - PCI_VPD_INFO_FLD_HDR_SIZE); in t4_get_raw_vpd_params() 2670 memcpy(p->pn, vpd + pn, min(i, PN_LEN)); in t4_get_raw_vpd_params() 2671 strim(p->pn); in t4_get_raw_vpd_params()
|
D | cxgb4.h | 286 u8 pn[PN_LEN + 1]; member
|
D | cxgb4_main.c | 4575 adap->params.vpd.sn, adap->params.vpd.pn); in print_port_info()
|
/linux-4.4.14/drivers/scsi/lpfc/ |
D | lpfc_nportdisc.c | 49 struct lpfc_name *nn, struct lpfc_name *pn) in lpfc_check_adisc() argument 61 if (memcmp(pn, &ndlp->nlp_portname, sizeof (struct lpfc_name))) in lpfc_check_adisc()
|
/linux-4.4.14/drivers/staging/vt6656/ |
D | rxtx.c | 757 memcpy(mic_hdr->ccmp_pn, seq.ccmp.pn, IEEE80211_CCMP_PN_LEN); in vnt_fill_txkey()
|
/linux-4.4.14/drivers/power/ |
D | bq24190_charger.c | 385 BQ24190_SYSFS_FIELD_RO(pn, VPRS, PN),
|
/linux-4.4.14/drivers/iommu/ |
D | intel-iommu.c | 2833 struct acpi_device_physical_node *pn; in iommu_prepare_static_identity_mapping() local 2841 list_for_each_entry(pn, &adev->physical_node_list, node) { in iommu_prepare_static_identity_mapping() 2842 ret = dev_prepare_static_identity_mapping(pn->dev, hw); in iommu_prepare_static_identity_mapping()
|
/linux-4.4.14/drivers/staging/vt6655/ |
D | rxtx.c | 1248 memcpy(mic_hdr->ccmp_pn, seq.ccmp.pn, IEEE80211_CCMP_PN_LEN); in vnt_fill_txkey()
|
/linux-4.4.14/drivers/usb/host/ |
D | u132-hcd.c | 1510 static void port_power(struct u132 *u132, int pn, int is_on) in port_power() argument 1512 u132->port[pn].power = is_on; in port_power()
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/ |
D | t3_hw.c | 579 VPD_ENTRY(pn, 16); /* part number */
|