/kernel/linux/linux-5.10/drivers/net/wan/ |
D | sbni.c | 351 struct net_local *nl; in sbni_probe1() local 382 nl = netdev_priv(dev); in sbni_probe1() 383 if( !nl ) { in sbni_probe1() 389 memset( nl, 0, sizeof(struct net_local) ); in sbni_probe1() 390 spin_lock_init( &nl->lock ); in sbni_probe1() 400 nl->maxframe = DEFAULT_FRAME_LEN; in sbni_probe1() 401 nl->csr1.rate = baud[ num ]; in sbni_probe1() 403 if( (nl->cur_rxl_index = rxl[ num ]) == -1 ) { in sbni_probe1() 405 nl->cur_rxl_index = DEF_RXL; in sbni_probe1() 406 nl->delta_rxl = DEF_RXL_DELTA; in sbni_probe1() [all …]
|
/kernel/linux/linux-5.10/drivers/net/plip/ |
D | plip.c | 285 struct net_local *nl = netdev_priv(dev); in plip_init_netdev() local 296 nl->port_owner = 0; in plip_init_netdev() 299 nl->trigger = PLIP_TRIGGER_WAIT; in plip_init_netdev() 300 nl->nibble = PLIP_NIBBLE_WAIT; in plip_init_netdev() 303 INIT_WORK(&nl->immediate, plip_bh); in plip_init_netdev() 304 INIT_DELAYED_WORK(&nl->deferred, plip_kick_bh); in plip_init_netdev() 307 INIT_DELAYED_WORK(&nl->timer, plip_timer_bh); in plip_init_netdev() 309 spin_lock_init(&nl->lock); in plip_init_netdev() 318 struct net_local *nl = in plip_kick_bh() local 321 if (nl->is_deferred) in plip_kick_bh() [all …]
|
/kernel/linux/linux-5.10/fs/xfs/libxfs/ |
D | xfs_trans_space.h | 52 #define XFS_DIRENTER_MAX_SPLIT(mp,nl) 1 argument 53 #define XFS_DIRENTER_SPACE_RES(mp,nl) \ argument 55 XFS_DIRENTER_MAX_SPLIT(mp,nl)) 73 #define XFS_CREATE_SPACE_RES(mp,nl) \ argument 74 (XFS_IALLOC_SPACE_RES(mp) + XFS_DIRENTER_SPACE_RES(mp,nl)) 81 #define XFS_LINK_SPACE_RES(mp,nl) \ argument 82 XFS_DIRENTER_SPACE_RES(mp,nl) 83 #define XFS_MKDIR_SPACE_RES(mp,nl) \ argument 84 (XFS_IALLOC_SPACE_RES(mp) + XFS_DIRENTER_SPACE_RES(mp,nl)) 92 #define XFS_RENAME_SPACE_RES(mp,nl) \ argument [all …]
|
/kernel/linux/linux-5.10/tools/scripts/ |
D | utilities.mak | 8 # nl-escape 10 # Usage: escape = $(call nl-escape[,escape]) 16 nl-escape = $(if $(1),$(1),m822df3020w6a44id34bt574ctac44eb9f4n) 18 # escape-nl 20 # Usage: escaped-text = $(call escape-nl,text[,escape]) 30 # $(call unescape-nl...) 32 escape-nl = $(subst $(newline),$(call nl-escape,$(2)),$(1)) 34 # unescape-nl 36 # Usage: text = $(call unescape-nl,escaped-text[,escape]) 38 # See escape-nl. [all …]
|
/kernel/linux/linux-5.10/kernel/ |
D | notifier.c | 22 static int notifier_chain_register(struct notifier_block **nl, in notifier_chain_register() argument 25 while ((*nl) != NULL) { in notifier_chain_register() 26 if (unlikely((*nl) == n)) { in notifier_chain_register() 30 if (n->priority > (*nl)->priority) in notifier_chain_register() 32 nl = &((*nl)->next); in notifier_chain_register() 34 n->next = *nl; in notifier_chain_register() 35 rcu_assign_pointer(*nl, n); in notifier_chain_register() 39 static int notifier_chain_unregister(struct notifier_block **nl, in notifier_chain_unregister() argument 42 while ((*nl) != NULL) { in notifier_chain_unregister() 43 if ((*nl) == n) { in notifier_chain_unregister() [all …]
|
/kernel/liteos_a/testsuites/unittest/net/socket/smoke/ |
D | net_socket_test_005.cpp | 42 uint32_t nl = htonl(0x12345678); in ByteOrderTest() local 43 ICUNIT_ASSERT_EQUAL(nl, 0x78563412, nl); in ByteOrderTest() 54 uint32_t nl = htonl(0x12345678); in ByteOrderTest() 55 ICUNIT_ASSERT_EQUAL(nl, 0x12345678, nl); in ByteOrderTest()
|
/kernel/linux/linux-5.10/tools/testing/selftests/netfilter/ |
D | nf-queue.c | 211 struct mnl_socket *nl; in open_queue() local 216 nl = mnl_socket_open(NETLINK_NETFILTER); in open_queue() 217 if (nl == NULL) { in open_queue() 222 if (mnl_socket_bind(nl, 0, MNL_SOCKET_AUTOPID) < 0) { in open_queue() 230 if (mnl_socket_sendto(nl, nlh, nlh->nlmsg_len) < 0) { in open_queue() 242 if (mnl_socket_sendto(nl, nlh, nlh->nlmsg_len) < 0) { in open_queue() 249 if (opts.timeout && setsockopt(mnl_socket_get_fd(nl), in open_queue() 256 return nl; in open_queue() 273 struct mnl_socket *nl; in mainloop() local 285 nl = open_queue(); in mainloop() [all …]
|
/kernel/linux/linux-5.10/arch/arm/vfp/ |
D | vfp.h | 44 static inline void add128(u64 *resh, u64 *resl, u64 nh, u64 nl, u64 mh, u64 ml) in add128() argument 50 : "=r" (nl), "=r" (nh) in add128() 51 : "0" (nl), "1" (nh), "r" (ml), "r" (mh) in add128() 54 *resl = nl; in add128() 57 static inline void sub128(u64 *resh, u64 *resl, u64 nh, u64 nl, u64 mh, u64 ml) in sub128() argument 63 : "=r" (nl), "=r" (nh) in sub128() 64 : "0" (nl), "1" (nh), "r" (ml), "r" (mh) in sub128() 67 *resl = nl; in sub128() 72 u32 nh, nl, mh, ml; in mul64to128() local 75 nl = n; in mul64to128() [all …]
|
/kernel/linux/linux-5.10/arch/powerpc/perf/ |
D | hv-24x7.c | 261 unsigned nl = be16_to_cpu(ev->event_name_len); in event_desc() local 262 __be16 *desc_len = (__be16 *)(ev->remainder + nl - 2); in event_desc() 265 return (char *)ev->remainder + nl; in event_desc() 270 unsigned nl = be16_to_cpu(ev->event_name_len); in event_long_desc() local 271 __be16 *desc_len_ = (__be16 *)(ev->remainder + nl - 2); in event_long_desc() 273 __be16 *long_desc_len = (__be16 *)(ev->remainder + nl + desc_len - 2); in event_long_desc() 276 return (char *)ev->remainder + nl + desc_len; in event_long_desc() 300 unsigned nl = be16_to_cpu(ev->event_name_len); in event_end() local 302 if (nl < 2) { in event_end() 303 pr_debug("%s: name length too short: %d", __func__, nl); in event_end() [all …]
|
/kernel/linux/linux-5.10/fs/ceph/ |
D | ioctl.c | 71 struct ceph_ioctl_layout nl; in ceph_ioctl_set_layout() local 82 memset(&nl, 0, sizeof(nl)); in ceph_ioctl_set_layout() 84 nl.stripe_count = l.stripe_count; in ceph_ioctl_set_layout() 86 nl.stripe_count = ci->i_layout.stripe_count; in ceph_ioctl_set_layout() 88 nl.stripe_unit = l.stripe_unit; in ceph_ioctl_set_layout() 90 nl.stripe_unit = ci->i_layout.stripe_unit; in ceph_ioctl_set_layout() 92 nl.object_size = l.object_size; in ceph_ioctl_set_layout() 94 nl.object_size = ci->i_layout.object_size; in ceph_ioctl_set_layout() 96 nl.data_pool = l.data_pool; in ceph_ioctl_set_layout() 98 nl.data_pool = ci->i_layout.pool_id; in ceph_ioctl_set_layout() [all …]
|
/kernel/liteos_m/components/net/test/ |
D | net_socket_test_005.c | 44 uint32_t nl = htonl(0x12345678); in ByteOrderTest() local 45 ICUNIT_ASSERT_EQUAL(nl, 0x78563412, 2); in ByteOrderTest() 57 uint32_t nl = htonl(0x12345678); in ByteOrderTest() local 58 ICUNIT_ASSERT_EQUAL(nl, 0x12345678, 6); in ByteOrderTest()
|
/kernel/linux/linux-5.10/net/tipc/ |
D | bcast.c | 731 void tipc_nlist_init(struct tipc_nlist *nl, u32 self) in tipc_nlist_init() argument 733 memset(nl, 0, sizeof(*nl)); in tipc_nlist_init() 734 INIT_LIST_HEAD(&nl->list); in tipc_nlist_init() 735 nl->self = self; in tipc_nlist_init() 738 void tipc_nlist_add(struct tipc_nlist *nl, u32 node) in tipc_nlist_add() argument 740 if (node == nl->self) in tipc_nlist_add() 741 nl->local = true; in tipc_nlist_add() 742 else if (tipc_dest_push(&nl->list, node, 0)) in tipc_nlist_add() 743 nl->remote++; in tipc_nlist_add() 746 void tipc_nlist_del(struct tipc_nlist *nl, u32 node) in tipc_nlist_del() argument [all …]
|
D | bcast.h | 63 void tipc_nlist_init(struct tipc_nlist *nl, u32 self); 64 void tipc_nlist_purge(struct tipc_nlist *nl); 65 void tipc_nlist_add(struct tipc_nlist *nl, u32 node); 66 void tipc_nlist_del(struct tipc_nlist *nl, u32 node);
|
/kernel/linux/linux-5.10/fs/nfsd/ |
D | fault_inject.c | 54 char *nl; in fault_inject_write() local 61 nl = strchr(write_buf, '\n'); in fault_inject_write() 62 if (nl) { in fault_inject_write() 63 size = nl - write_buf; in fault_inject_write() 64 *nl = '\0'; in fault_inject_write()
|
/kernel/linux/linux-5.10/samples/bpf/ |
D | xdp_router_ipv4_user.c | 323 struct nlmsghdr nl; in get_route_table() member 341 req.nl.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg)); in get_route_table() 342 req.nl.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP; in get_route_table() 343 req.nl.nlmsg_type = RTM_GETROUTE; in get_route_table() 347 req.nl.nlmsg_pid = 0; in get_route_table() 348 req.nl.nlmsg_seq = ++seq; in get_route_table() 350 iov.iov_base = (void *)&req.nl; in get_route_table() 351 iov.iov_len = req.nl.nlmsg_len; in get_route_table() 462 struct nlmsghdr nl; in get_arp_table() member 480 req.nl.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg)); in get_arp_table() [all …]
|
/kernel/linux/linux-5.10/arch/s390/include/asm/ |
D | sysinfo.h | 155 unsigned char nl; member 166 unsigned char nl; member 172 unsigned char nl; member
|
/kernel/linux/linux-5.10/net/ieee802154/ |
D | Makefile | 6 ieee802154-y := netlink.o nl-mac.o nl-phy.o nl_policy.o core.o \
|
/kernel/linux/linux-5.10/include/linux/netfilter/ |
D | nfnetlink.h | 11 int (*call)(struct net *net, struct sock *nl, struct sk_buff *skb, 15 int (*call_rcu)(struct net *net, struct sock *nl, struct sk_buff *skb, 19 int (*call_batch)(struct net *net, struct sock *nl, struct sk_buff *skb,
|
/kernel/linux/linux-5.10/scripts/ |
D | asn1_compiler.c | 349 char *line, *nl, *start, *p, *q; in tokenise() local 367 nl = memchr(line, '\n', end - buffer); in tokenise() 368 if (!nl) { in tokenise() 369 buffer = nl = end; in tokenise() 371 buffer = nl + 1; in tokenise() 372 *nl = '\0'; in tokenise() 378 while ((p = memchr(p, '-', nl - p))) { in tokenise() 382 while ((q = memchr(q, '-', nl - q))) { in tokenise() 386 memmove(p, q, nl - q); in tokenise() 392 nl = p; in tokenise() [all …]
|
/kernel/linux/linux-5.10/lib/ |
D | inflate.c | 842 unsigned nl; /* number of literal/length codes */ in inflate_dynamic() local 867 nl = 257 + ((unsigned)b & 0x1f); /* number of literal/length codes */ in inflate_dynamic() 876 if (nl > 288 || nd > 32) in inflate_dynamic() 878 if (nl > 286 || nd > 30) in inflate_dynamic() 912 n = nl + nd; in inflate_dynamic() 978 if ((i = huft_build(ll, nl, 257, cplens, cplext, &tl, &bl)) != 0) in inflate_dynamic() 990 if ((i = huft_build(ll + nl, nd, 0, cpdist, cpdext, &td, &bd)) != 0) in inflate_dynamic()
|
/kernel/linux/linux-5.10/tools/thermal/tmon/ |
D | sysfs.c | 198 static int find_tzone_cdev(struct dirent *nl, char *tz_name, in find_tzone_cdev() argument 207 if (nl->d_type == DT_LNK) { in find_tzone_cdev() 208 syslog(LOG_DEBUG, "TZ%d: cdev: %s cid %d\n", tz_id, nl->d_name, in find_tzone_cdev() 218 tz_name, nl->d_name); in find_tzone_cdev() 232 "%s%s", nl->d_name, "_trip_point"); in find_tzone_cdev()
|
/kernel/linux/linux-5.10/arch/sh/kernel/cpu/sh2a/ |
D | fpu.c | 164 unsigned long long mh, ml, nh, nl; in denormal_muld() local 177 nl = ml; in denormal_muld() 183 while (nl) { nl >>= 1; w++;} in denormal_muld()
|
/kernel/linux/linux-5.10/drivers/infiniband/ulp/rtrs/ |
D | rtrs-clt-sysfs.c | 156 const char *nl; in add_path_store() local 162 nl = strchr(buf, '\n'); in add_path_store() 163 if (nl) in add_path_store() 164 len = nl - buf; in add_path_store()
|
/kernel/linux/linux-5.10/fs/qnx4/ |
D | README | 7 Richard "Scuba" A. Frowijn <scuba@wxs.nl>
|
/kernel/linux/linux-5.10/drivers/md/ |
D | dm-ioctl.c | 513 struct dm_name_list *orig_nl, *nl, *old_nl = NULL; in list_devices() local 532 nl = orig_nl = get_result_buffer(param, param_size, &len); in list_devices() 533 if (len < needed || len < sizeof(nl->dev)) { in list_devices() 539 nl->dev = 0; /* Flags no data */ in list_devices() 547 old_nl->next = (uint32_t) ((void *) nl - in list_devices() 550 nl->dev = huge_encode_dev(disk_devt(disk)); in list_devices() 551 nl->next = 0; in list_devices() 552 strcpy(nl->name, hc->name); in list_devices() 554 old_nl = nl; in list_devices() 555 event_nr = align_ptr(nl->name + strlen(hc->name) + 1); in list_devices() [all …]
|