Home
last modified time | relevance | path

Searched refs:fl (Results 1 – 25 of 43) sorted by relevance

12

/f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/
H A Dvmem.h90 #define vmem_alloc(sz, fl) spl_vmem_alloc((sz), (fl), __func__, __LINE__) argument
91 #define vmem_zalloc(sz, fl) spl_vmem_zalloc((sz), (fl), __func__, __LINE__) argument
94 extern void *spl_vmem_alloc(size_t sz, int fl, const char *func, int line);
95 extern void *spl_vmem_zalloc(size_t sz, int fl, const char *func, int line);
H A Dkmem.h177 #define kmem_alloc(sz, fl) spl_kmem_alloc((sz), (fl), __func__, __LINE__) argument
178 #define kmem_zalloc(sz, fl) spl_kmem_zalloc((sz), (fl), __func__, __LINE__) argument
182 extern void *spl_kmem_alloc(size_t sz, int fl, const char *func, int line);
183 extern void *spl_kmem_zalloc(size_t sz, int fl, const char *func, int line);
H A Dtimer.h74 timer_setup(struct timer_list *timer, void (*func)(spl_timer_list_t), u32 fl) in timer_setup() argument
77 (timer)->flags = fl; in timer_setup()
H A Dkmem_cache.h200 #define kmem_cache_create(name, size, align, ctor, dtor, rclm, priv, vmp, fl) \ argument
201 spl_kmem_cache_create(name, size, align, ctor, dtor, rclm, priv, vmp, fl)
/f-stack/freebsd/net/
H A Diflib.c2039 MPASS(n <= fl->ifl_size - pidx + fl->ifl_cidx); in iflib_fl_refill()
2044 iru_init(&iru, fl->ifl_rxq, fl->ifl_id); in iflib_fl_refill()
2130 fl->ifl_id, fl->ifl_pidx); in iflib_fl_refill()
2133 if (fl->ifl_fragidx == fl->ifl_size) in iflib_fl_refill()
2159 …int32_t delta = fl->ifl_size - get_inuse(fl->ifl_size, fl->ifl_cidx, fl->ifl_pidx, fl->ifl_gen) - … in iflib_fl_refill_all()
2162 MPASS(fl->ifl_credits <= fl->ifl_size); in iflib_fl_refill_all()
2221 fl->ifl_credits = fl->ifl_cidx = fl->ifl_pidx = fl->ifl_gen = fl->ifl_fragidx = 0; in iflib_fl_bufs_free()
2257 fl->ifl_cltype = m_gettype(fl->ifl_buf_size); in iflib_fl_setup()
2258 fl->ifl_zone = m_getzone(fl->ifl_buf_size); in iflib_fl_setup()
2698 fl->ifl_cidx = (fl->ifl_cidx + 1) & (fl->ifl_size-1); in rxd_frag_to_sd()
[all …]
/f-stack/freebsd/vm/
H A Dvm_phys.c260 struct vm_freelist *fl; in sysctl_vm_phys_free() local
285 fl[oind].lcnt); in sysctl_vm_phys_free()
382 fl[order].lcnt++; in vm_freelist_add()
390 fl[order].lcnt--; in vm_freelist_rem()
490 struct vm_freelist *fl; in vm_phys_init() local
783 need, fl, 1); in vm_phys_alloc_npages()
1086 struct vm_freelist *fl; in vm_phys_free_pages() local
1150 struct vm_freelist *fl; in vm_phys_enqueue_contig() local
1298 struct vm_freelist *fl; in vm_phys_unfree_page() local
1410 struct vm_freelist *fl; in vm_phys_alloc_seg_contig() local
[all …]
/f-stack/dpdk/drivers/net/cxgbe/
H A Dsge.c458 refill_fl(adap, fl, min(MAX_RX_REFILL, fl_cap(fl) - fl->avail)); in __refill_fl()
1599 &rxq->fl.sdesc[rxq->fl.cidx]; in process_responses()
1634 rsd = &rxq->fl.sdesc[rxq->fl.cidx]; in process_responses()
1842 if (fl) { in t4_sge_alloc_rxq()
1857 fl->size = cxgbe_roundup(fl->size, 8); in t4_sge_alloc_rxq()
1862 &fl->addr, &fl->sdesc); in t4_sge_alloc_rxq()
1922 if (fl) { in t4_sge_alloc_rxq()
1938 nb_refill = refill_fl(adap, fl, fl_cap(fl)); in t4_sge_alloc_rxq()
1993 if (fl && fl->desc) { in t4_sge_alloc_rxq()
2177 unsigned int fl_id = fl ? fl->cntxt_id : 0xffff; in free_rspq_fl()
[all …]
H A Dcxgbe_ethdev.c668 if ((&rxq->fl) != NULL) in cxgbe_dev_rx_queue_setup()
669 rxq->fl.size = temp_nb_desc; in cxgbe_dev_rx_queue_setup()
680 &rxq->fl, NULL, in cxgbe_dev_rx_queue_setup()
/f-stack/freebsd/kern/
H A Dkern_lockf.c443 switch (fl->l_whence) { in lf_advlockasync()
450 start = fl->l_start; in lf_advlockasync()
455 (fl->l_start > 0 && size > OFF_MAX - fl->l_start)) in lf_advlockasync()
465 if (fl->l_len < 0) { in lf_advlockasync()
469 start += fl->l_len; in lf_advlockasync()
475 oadd = fl->l_len - 1; in lf_advlockasync()
489 fl->l_type = F_UNLCK; in lf_advlockasync()
1589 fl->l_len = 0; in lf_getlock()
1864 struct flock fl; member
1901 ldesc->fl.l_len = in lf_iteratelocks_sysid()
[all …]
H A Dkern_descrip.c407 struct flock fl; in kern_fcntl_freebsd() local
423 fl.l_len = ofl.l_len; in kern_fcntl_freebsd()
424 fl.l_pid = ofl.l_pid; in kern_fcntl_freebsd()
425 fl.l_type = ofl.l_type; in kern_fcntl_freebsd()
427 fl.l_sysid = 0; in kern_fcntl_freebsd()
440 arg1 = (intptr_t)&fl; in kern_fcntl_freebsd()
446 error = copyin((void *)(intptr_t)arg, &fl, sizeof(fl)); in kern_fcntl_freebsd()
447 arg1 = (intptr_t)&fl; in kern_fcntl_freebsd()
460 ofl.l_len = fl.l_len; in kern_fcntl_freebsd()
461 ofl.l_pid = fl.l_pid; in kern_fcntl_freebsd()
[all …]
/f-stack/tools/route/
H A Droute.c330 struct fibl *fl; in fiboptlist_range() local
364 fl = calloc(1, sizeof(*fl)); in fiboptlist_range()
365 if (fl == NULL) { in fiboptlist_range()
369 fl->fl_num = i; in fiboptlist_range()
381 struct fibl *fl; in fiboptlist_csv() local
425 fl = calloc(1, sizeof(*fl)); in fiboptlist_csv()
426 if (fl == NULL) { in fiboptlist_csv()
430 fl->fl_num = fib; in fiboptlist_csv()
447 struct fibl *fl; in flushroutes() local
879 struct fibl *fl; in newroute() local
[all …]
/f-stack/app/nginx-1.16.1/src/os/unix/
H A Dngx_files.c761 struct flock fl; in ngx_trylock_fd() local
764 fl.l_type = F_WRLCK; in ngx_trylock_fd()
765 fl.l_whence = SEEK_SET; in ngx_trylock_fd()
767 if (fcntl(fd, F_SETLK, &fl) == -1) { in ngx_trylock_fd()
778 struct flock fl; in ngx_lock_fd() local
781 fl.l_type = F_WRLCK; in ngx_lock_fd()
782 fl.l_whence = SEEK_SET; in ngx_lock_fd()
795 struct flock fl; in ngx_unlock_fd() local
798 fl.l_type = F_UNLCK; in ngx_unlock_fd()
799 fl.l_whence = SEEK_SET; in ngx_unlock_fd()
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/
H A Dzfs_destroy_005_neg.ksh130 log_mustnot pgrep -fl mkbusy
167 log_mustnot pgrep -fl mkbusy
200 log_mustnot pgrep -fl mkbusy
H A Dzfs_destroy_001_pos.ksh155 log_mustnot pgrep -fl mkbusy
171 log_mustnot pgrep -fl mkbusy
/f-stack/tools/libutil/
H A Dlogin_times.c38 u_char fl; member
87 m.lt_dow |= dws[i].fl; in parse_lt()
/f-stack/dpdk/drivers/raw/octeontx2_dma/
H A Dotx2_dpi_rawdev.h136 uint16_t fl:1; member
171 uint64_t fl:1; member
/f-stack/freebsd/netgraph/netflow/
H A Dnetflow_v9.c419 struct netflow_v9_flowset_header *fl; in get_export9_dgram() local
426 fl = priv->v9_flowsets[0]; in get_export9_dgram()
427 m_append(m, ntohs(fl->length), (void *)fl); in get_export9_dgram()
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dzfs_replay.c792 flock64_t fl; in zfs_replay_truncate() local
801 bzero(&fl, sizeof (fl)); in zfs_replay_truncate()
802 fl.l_type = F_WRLCK; in zfs_replay_truncate()
803 fl.l_whence = SEEK_SET; in zfs_replay_truncate()
804 fl.l_start = lr->lr_offset; in zfs_replay_truncate()
805 fl.l_len = lr->lr_length; in zfs_replay_truncate()
807 error = zfs_space(zp, F_FREESP, &fl, O_RDWR | O_LARGEFILE, in zfs_replay_truncate()
/f-stack/freebsd/net80211/
H A Dieee80211_freebsd.h111 ieee80211_ff_lock_t *fl = &(_ic)->ic_fflock; \
112 snprintf(fl->name, sizeof(fl->name), "%s_ff_lock", _name); \
113 mtx_init(&fl->mtx, fl->name, NULL, MTX_DEF); \
/f-stack/dpdk/drivers/net/sfc/
H A Dsfc_mae.c820 const struct sfc_mae_field_locator *fl = &field_locators[i]; in sfc_mae_item_build_supp_mask() local
822 SFC_ASSERT(fl->ofst + fl->size <= mask_size); in sfc_mae_item_build_supp_mask()
823 memset(RTE_PTR_ADD(mask_ptr, fl->ofst), 0xff, fl->size); in sfc_mae_item_build_supp_mask()
838 const struct sfc_mae_field_locator *fl = &field_locators[i]; in sfc_mae_parse_item() local
840 if (fl->field_id == SFC_MAE_FIELD_HANDLING_DEFERRED) in sfc_mae_parse_item()
844 fremap[fl->field_id], in sfc_mae_parse_item()
845 fl->size, spec + fl->ofst, in sfc_mae_parse_item()
846 fl->size, mask + fl->ofst); in sfc_mae_parse_item()
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-dma-engine.h137 uint64_t fl : 1; /**< FL - Free local buffer. member
/f-stack/dpdk/drivers/net/octeontx2/
H A Dotx2_flow.c853 int lid, lt, ld, fl, ix; in flow_process_mkex_cfg() local
875 for (fl = 0; fl < NPC_MAX_LFL; fl++) { in flow_process_mkex_cfg()
877 &npc->prx_fxcfg[ix][ld][fl].xtract[0]; in flow_process_mkex_cfg()
878 val = kex_rsp->intf_ld_flags[ix][ld][fl]; in flow_process_mkex_cfg()
/f-stack/dpdk/app/test-fib/
H A Dmain.c1209 FILE *fl = NULL; in main() local
1248 fl = fopen(config.lookup_ips_file, "r"); in main()
1249 if (fl == NULL) in main()
1254 while (fgets(line, sizeof(line), fl) != NULL) in main()
1256 rewind(fl); in main()
1307 if (fl == NULL) in main()
1310 ret = parse_lookup(fl, af); in main()
/f-stack/app/redis-5.0.5/tests/
H A Dinstances.tcl344 set fl [string length $field]
348 if {[string range $line 0 $fl] eq $field} {
/f-stack/dpdk/drivers/net/cxgbe/base/
H A Dadapter.h167 struct sge_fl fl; member
823 struct sge_fl *fl, rspq_handler_t handler,

12