/Linux-v5.15/include/net/ |
D | nsh.h | 260 static inline u16 nsh_hdr_len(const struct nshhdr *nsh) in nsh_hdr_len() argument 262 return ((ntohs(nsh->ver_flags_ttl_len) & NSH_LEN_MASK) in nsh_hdr_len() 266 static inline u8 nsh_get_ver(const struct nshhdr *nsh) in nsh_get_ver() argument 268 return (ntohs(nsh->ver_flags_ttl_len) & NSH_VER_MASK) in nsh_get_ver() 272 static inline u8 nsh_get_flags(const struct nshhdr *nsh) in nsh_get_flags() argument 274 return (ntohs(nsh->ver_flags_ttl_len) & NSH_FLAGS_MASK) in nsh_get_flags() 278 static inline u8 nsh_get_ttl(const struct nshhdr *nsh) in nsh_get_ttl() argument 280 return (ntohs(nsh->ver_flags_ttl_len) & NSH_TTL_MASK) in nsh_get_ttl() 284 static inline void __nsh_set_xflag(struct nshhdr *nsh, u16 xflag, u16 xmask) in __nsh_set_xflag() argument 286 nsh->ver_flags_ttl_len in __nsh_set_xflag() [all …]
|
/Linux-v5.15/drivers/bluetooth/ |
D | dtl1_cs.c | 97 struct nsh { struct 205 struct nsh *nsh; in dtl1_receive() local 230 nsh = (struct nsh *)info->rx_skb->data; in dtl1_receive() 239 info->rx_count = nsh->len + (nsh->len & 0x0001); in dtl1_receive() 242 hci_skb_pkt_type(info->rx_skb) = nsh->type; in dtl1_receive() 245 if (nsh->len & 0x0001) { in dtl1_receive() 388 struct nsh nsh; in dtl1_hci_send_frame() local 393 nsh.type = 0x81; in dtl1_hci_send_frame() 397 nsh.type = 0x82; in dtl1_hci_send_frame() 401 nsh.type = 0x83; in dtl1_hci_send_frame() [all …]
|
/Linux-v5.15/drivers/net/dsa/hirschmann/ |
D | hellcreek_ptp.c | 31 u16 nsl, nsh; in hellcreek_ptp_clock_read() local 43 nsh = hellcreek_ptp_read(hellcreek, PR_SS_SYNC_DATA_C); in hellcreek_ptp_clock_read() 44 nsh = hellcreek_ptp_read(hellcreek, PR_SS_SYNC_DATA_C); in hellcreek_ptp_clock_read() 45 nsh = hellcreek_ptp_read(hellcreek, PR_SS_SYNC_DATA_C); in hellcreek_ptp_clock_read() 46 nsh = hellcreek_ptp_read(hellcreek, PR_SS_SYNC_DATA_C); in hellcreek_ptp_clock_read() 49 return (u64)nsl | ((u64)nsh << 16); in hellcreek_ptp_clock_read() 102 u16 secl, nsh, nsl; in hellcreek_ptp_settime() local 105 nsh = ((u32)ts->tv_nsec & 0xffff0000) >> 16; in hellcreek_ptp_settime() 118 hellcreek_ptp_write(hellcreek, nsh, PR_CLOCK_WRITE_C); in hellcreek_ptp_settime()
|
D | hellcreek_hwtstamp.c | 206 u16 nsl, nsh; in hellcreek_ptp_hwtstamp_read() local 208 nsh = hellcreek_ptp_read(hellcreek, ts_reg); in hellcreek_ptp_hwtstamp_read() 209 nsh = hellcreek_ptp_read(hellcreek, ts_reg); in hellcreek_ptp_hwtstamp_read() 210 nsh = hellcreek_ptp_read(hellcreek, ts_reg); in hellcreek_ptp_hwtstamp_read() 211 nsh = hellcreek_ptp_read(hellcreek, ts_reg); in hellcreek_ptp_hwtstamp_read() 214 return (u64)nsl | ((u64)nsh << 16); in hellcreek_ptp_hwtstamp_read()
|
/Linux-v5.15/arch/arm64/kvm/hyp/nvhe/ |
D | debug-sr.c | 40 dsb(nsh); in __debug_save_spe() 72 dsb(nsh); in __debug_save_trace()
|
D | tlb.c | 137 dsb(nsh); in __kvm_flush_cpu_context()
|
D | host.S | 96 dsb nsh
|
/Linux-v5.15/arch/arm64/kernel/ |
D | relocate_kernel.S | 70 dsb nsh 72 dsb nsh
|
D | hibernate-asm.S | 30 dsb nsh
|
D | hyp-stub.S | 155 dsb nsh
|
/Linux-v5.15/net/nsh/ |
D | Makefile | 2 obj-$(CONFIG_NET_NSH) += nsh.o
|
/Linux-v5.15/arch/arm/include/asm/ |
D | tlbflush.h | 338 dsb(nsh); in local_flush_tlb_all() 391 dsb(nsh); in local_flush_tlb_mm() 448 dsb(nsh); in local_flush_tlb_page() 501 dsb(nsh); in local_flush_tlb_kernel_page()
|
/Linux-v5.15/net/openvswitch/ |
D | flow.c | 506 key->nsh.base.flags = nsh_get_flags(nh); in parse_nsh() 507 key->nsh.base.ttl = nsh_get_ttl(nh); in parse_nsh() 508 key->nsh.base.mdtype = nh->mdtype; in parse_nsh() 509 key->nsh.base.np = nh->np; in parse_nsh() 510 key->nsh.base.path_hdr = nh->path_hdr; in parse_nsh() 511 switch (key->nsh.base.mdtype) { in parse_nsh() 515 memcpy(key->nsh.context, nh->md1.context, in parse_nsh() 519 memset(key->nsh.context, 0, in parse_nsh()
|
D | flow_netlink.h | 68 int nsh_key_from_nlattr(const struct nlattr *attr, struct ovs_key_nsh *nsh,
|
D | flow_netlink.c | 1337 struct ovs_key_nsh *nsh, struct ovs_key_nsh *nsh_mask) in nsh_key_from_nlattr() argument 1352 nsh->base = *base; in nsh_key_from_nlattr() 1360 memcpy(nsh->context, md1->context, sizeof(*md1)); in nsh_key_from_nlattr() 1419 SW_FLOW_KEY_PUT(match, nsh.base.flags, in nsh_key_put_from_nlattr() 1421 SW_FLOW_KEY_PUT(match, nsh.base.ttl, in nsh_key_put_from_nlattr() 1423 SW_FLOW_KEY_PUT(match, nsh.base.mdtype, in nsh_key_put_from_nlattr() 1425 SW_FLOW_KEY_PUT(match, nsh.base.np, in nsh_key_put_from_nlattr() 1427 SW_FLOW_KEY_PUT(match, nsh.base.path_hdr, in nsh_key_put_from_nlattr() 1436 SW_FLOW_KEY_PUT(match, nsh.context[i], in nsh_key_put_from_nlattr() 1959 static int nsh_key_to_nlattr(const struct ovs_key_nsh *nsh, bool is_mask, in nsh_key_to_nlattr() argument [all …]
|
D | actions.c | 600 flow_key->nsh.base.flags = flags; in set_nsh() 603 flow_key->nsh.base.ttl = ttl; in set_nsh() 607 flow_key->nsh.base.path_hdr = nh->path_hdr; in set_nsh() 615 memcpy(flow_key->nsh.context, nh->md1.context, in set_nsh() 619 memset(flow_key->nsh.context, 0, in set_nsh() 620 sizeof(flow_key->nsh.context)); in set_nsh()
|
D | flow.h | 141 struct ovs_key_nsh nsh; /* network service header */ member
|
/Linux-v5.15/arch/arm64/include/asm/ |
D | mte.h | 118 dsb(nsh); in mte_check_tfsr_exit()
|
D | tlbflush.h | 234 dsb(nsh); in local_flush_tlb_all()
|
D | assembler.h | 115 dsb nsh 742 dsb nsh
|
/Linux-v5.15/arch/arm64/kvm/hyp/vhe/ |
D | tlb.c | 139 dsb(nsh); in __kvm_flush_cpu_context()
|
/Linux-v5.15/net/ |
D | Makefile | 73 obj-$(CONFIG_NET_NSH) += nsh/
|
/Linux-v5.15/arch/arm64/mm/ |
D | proc.S | 177 dsb nsh 404 dsb nsh
|
/Linux-v5.15/drivers/md/ |
D | raid5.c | 2486 struct stripe_head *osh, *nsh; in resize_stripes() local 2507 nsh = alloc_stripe(sc, GFP_KERNEL, newsize, conf); in resize_stripes() 2508 if (!nsh) in resize_stripes() 2511 list_add(&nsh->lru, &newstripes); in resize_stripes() 2516 nsh = list_entry(newstripes.next, struct stripe_head, lru); in resize_stripes() 2517 list_del(&nsh->lru); in resize_stripes() 2518 free_stripe(sc, nsh); in resize_stripes() 2530 list_for_each_entry(nsh, &newstripes, lru) { in resize_stripes() 2541 nsh->pages[i] = osh->pages[i]; in resize_stripes() 2546 nsh->dev[i].page = osh->dev[i].page; in resize_stripes() [all …]
|
/Linux-v5.15/arch/x86/boot/ |
D | genimage.sh | 193 mcopy - "$1"startup.nsh
|