/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/ |
D | quota.c | 158 u32 quota = le32_to_cpu(cmd->quotas[i].quota); in iwl_mvm_adjust_quota_for_noa() local 163 quota *= (beacon_int - mvm->noa_duration); in iwl_mvm_adjust_quota_for_noa() 164 quota /= beacon_int; in iwl_mvm_adjust_quota_for_noa() 167 le32_to_cpu(cmd->quotas[i].quota), quota); in iwl_mvm_adjust_quota_for_noa() 169 cmd->quotas[i].quota = cpu_to_le32(quota); in iwl_mvm_adjust_quota_for_noa() 179 int i, idx, err, num_active_macs, quota, quota_rem, n_non_lowlat; in iwl_mvm_update_quotas() local 230 quota = (QUOTA_100 - QUOTA_LOWLAT_MIN) / n_non_lowlat; in iwl_mvm_update_quotas() 231 quota_rem = QUOTA_100 - n_non_lowlat * quota - in iwl_mvm_update_quotas() 235 quota); in iwl_mvm_update_quotas() 242 quota = QUOTA_100 / num_active_macs; in iwl_mvm_update_quotas() [all …]
|
D | Makefile | 3 iwlmvm-y += utils.o rx.o tx.o binding.o quota.o sta.o sf.o
|
D | fw-api.h | 905 __le32 quota; member
|
D | d3.c | 680 quota_cmd.quotas[0].quota = cpu_to_le32(IWL_MVM_MAX_QUOTA); in iwl_mvm_d3_reprogram()
|
/linux-4.4.14/fs/quota/ |
D | Kconfig | 13 Note that gfs2 and xfs use their own quota system. 18 with the quota tools. Probably the quota support is only useful for 22 bool "Report quota messages through netlink interface" 25 If you say Y here, quota warnings (about exceeding softlimit, reaching 30 bool "Print quota warnings to console (OBSOLETE)" 34 If you say Y here, quota warnings (about exceeding softlimit, reaching 40 bool "Additional quota sanity checks" 44 If you say Y here, quota subsystem will perform some additional 45 sanity checks of quota internal structures. If unsure, say N. 47 # Generic support for tree structured quota files. Selected when needed. [all …]
|
D | Makefile | 5 obj-$(CONFIG_QUOTACTL) += quota.o kqid.o
|
/linux-4.4.14/net/netfilter/ |
D | xt_quota.c | 16 uint64_t quota; member 33 if (priv->quota >= skb->len) { in quota_mt() 34 priv->quota -= skb->len; in quota_mt() 38 priv->quota = 0; in quota_mt() 57 q->master->quota = q->quota; in quota_mt_check()
|
D | nfnetlink_acct.c | 109 u64 *quota = (u64 *)nfacct->data; in nfnl_acct_new() local 111 *quota = be64_to_cpu(nla_get_be64(tb[NFACCT_QUOTA])); in nfnl_acct_new() 169 u64 *quota = (u64 *)acct->data; in nfnl_acct_fill_info() local 172 nla_put_be64(skb, NFACCT_QUOTA, cpu_to_be64(*quota))) in nfnl_acct_fill_info() 463 u64 *quota; in nfnl_acct_overquota() local 470 quota = (u64 *)nfacct->data; in nfnl_acct_overquota() 474 ret = now > *quota; in nfnl_acct_overquota() 476 if (now >= *quota && in nfnl_acct_overquota()
|
D | Kconfig | 1315 tristate '"quota" match support' 1318 This option adds a `quota' match, which allows to match on a
|
/linux-4.4.14/arch/powerpc/platforms/pseries/ |
D | msi.c | 234 int quota; member 277 if (req < counts->quota) in count_spare_msis() 278 counts->spare += counts->quota - req; in count_spare_msis() 279 else if (req > counts->quota) in count_spare_msis() 316 counts.quota = total / counts.num_devices; in msi_quota_for_device() 317 if (request <= counts.quota) in msi_quota_for_device() 331 counts.quota += counts.spare / counts.over_quota; in msi_quota_for_device() 334 request = min(counts.quota, request); in msi_quota_for_device() 384 int hwirq, virq, i, quota, rc; in rtas_setup_msi_irqs() local 398 quota = msi_quota_for_device(pdev, nvec); in rtas_setup_msi_irqs() [all …]
|
/linux-4.4.14/Documentation/filesystems/ |
D | quota.txt | 18 For more details about quota design, see the documentation in quota-tools package 24 quota subsystem traditionally printed a message to the controlling terminal of 27 Thus quota netlink interface has been designed to pass information about 33 details about this layer). The name of the quota generic netlink interface 34 is "VFS_DQUOT". Definitions of constants below are in <linux/quota.h>. 35 Since the quota netlink protocol is not namespace aware, quota netlink messages 43 - type of quota being exceeded (one of USRQUOTA, GRPQUOTA) 45 - UID/GID (depends on quota type) of user / group whose limit
|
D | xfs.txt | 181 Forcibly turns off all quota accounting and enforcement 184 uquota/usrquota/uqnoenforce/quota 185 User disk quota accounting enabled, and limits (optionally) 189 Group disk quota accounting enabled and limits (optionally) 193 Project disk quota accounting enabled and limits (optionally)
|
D | ext4.txt | 248 quota These options are ignored by the filesystem. They 249 noquota are used only by quota tools to recognize volumes 250 grpquota where quota should be turned on. See documentation 251 usrquota in the quota-tools package for more details 254 jqfmt=<quota type> These options tell filesystem details about quota 255 usrjquota=<file> so that quota information can be properly updated 257 quota options. See documentation in the quota-tools
|
D | Locking | 158 be the only ones operating on the quota file by the quota code (via 160 writes to quota files with quotas on). For other details about locking 505 a proper locking wrt the filesystem and call the generic quota operations. 507 What filesystem should expect from the generic quota functions: 519 More details about quota locking can be found in fs/dquot.c.
|
D | 00-INDEX | 118 quota.txt
|
D | exofs.txt | 10 array of sectors but as a container of objects, each having a length, quota,
|
D | ext2.txt | 62 grpquota,noquota,quota,usrquota Quota options are silently ignored by ext2.
|
D | vfs.txt | 298 quota_read: called by the VFS to read from filesystem quota file. 300 quota_write: called by the VFS to write to filesystem quota file.
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-bwc.txt | 10 The bandwidth allowed for a group is specified using a quota and period. Within 12 "quota" microseconds of CPU time. When the CPU bandwidth consumption of a 17 A group's unused runtime is globally tracked, being refreshed with quota units 40 The minimum quota allowed for the quota or period is 1ms. There is also an 87 a. it fully consumes its own quota within a period 88 b. a parent's quota is fully consumed within its period 97 If period is 250ms and quota is also 250ms, the group will get 100 # echo 250000 > cpu.cfs_quota_us /* quota = 250ms */ 105 With 500ms period and 1000ms quota, the group can get 2 CPUs worth of 108 # echo 1000000 > cpu.cfs_quota_us /* quota = 1000ms */ [all …]
|
/linux-4.4.14/fs/xfs/ |
D | Kconfig | 30 a per user and/or a per group basis under XFS. XFS considers quota 33 quota is also compatible with the IRIX version of XFS, allowing a 38 README.quota in the xfsprogs package. XFS quota can be used either 39 with or without the generic quota support enabled (CONFIG_QUOTA) -
|
/linux-4.4.14/drivers/net/wireless/ath/wil6210/ |
D | netdev.c | 84 int quota = budget; in wil6210_netdev_poll_rx() local 87 wil_rx_handle(wil, "a); in wil6210_netdev_poll_rx() 88 done = budget - quota; in wil6210_netdev_poll_rx()
|
D | txrx.c | 649 void wil_rx_handle(struct wil6210_priv *wil, int *quota) in wil_rx_handle() argument 660 while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) { in wil_rx_handle() 661 (*quota)--; in wil_rx_handle()
|
D | wil6210.h | 819 void wil_rx_handle(struct wil6210_priv *wil, int *quota);
|
/linux-4.4.14/drivers/net/can/c_can/ |
D | c_can.c | 756 u32 pend, int quota) in c_can_read_objects() argument 760 while ((obj = ffs(pend)) && quota > 0) { in c_can_read_objects() 770 quota -= n; in c_can_read_objects() 788 quota--; in c_can_read_objects() 814 static int c_can_do_rx_poll(struct net_device *dev, int quota) in c_can_do_rx_poll() argument 826 while (quota > 0) { in c_can_do_rx_poll() 842 n = c_can_read_objects(dev, priv, toread, quota); in c_can_do_rx_poll() 844 quota -= n; in c_can_do_rx_poll() 1001 static int c_can_poll(struct napi_struct *napi, int quota) in c_can_poll() argument 1044 work_done += c_can_do_rx_poll(dev, (quota - work_done)); in c_can_poll() [all …]
|
/linux-4.4.14/drivers/net/can/ |
D | pch_can.c | 641 static int pch_can_rx_normal(struct net_device *ndev, u32 obj_num, int quota) in pch_can_rx_normal() argument 669 quota--; in pch_can_rx_normal() 709 quota--; in pch_can_rx_normal() 714 } while (quota > 0); in pch_can_rx_normal() 737 static int pch_can_poll(struct napi_struct *napi, int quota) in pch_can_poll() argument 743 int quota_save = quota; in pch_can_poll() 755 quota--; in pch_can_poll() 765 if (quota == 0) in pch_can_poll() 769 quota -= pch_can_rx_normal(ndev, int_stat, quota); in pch_can_poll() 780 return quota_save - quota; in pch_can_poll()
|
D | at91_can.c | 681 static int at91_poll_rx(struct net_device *dev, int quota) in at91_poll_rx() argument 696 mb < get_mb_tx_first(priv) && quota > 0; in at91_poll_rx() 710 quota--; in at91_poll_rx() 715 quota > 0 && mb > get_mb_rx_last(priv)) { in at91_poll_rx() 771 static int at91_poll_err(struct net_device *dev, int quota, u32 reg_sr) in at91_poll_err() argument 776 if (quota == 0) in at91_poll_err() 792 static int at91_poll(struct napi_struct *napi, int quota) in at91_poll() argument 800 work_done += at91_poll_rx(dev, quota - work_done); in at91_poll() 808 work_done += at91_poll_err(dev, quota - work_done, reg_sr); in at91_poll() 810 if (work_done < quota) { in at91_poll()
|
D | flexcan.c | 677 static int flexcan_poll(struct napi_struct *napi, int quota) in flexcan_poll() argument 696 work_done < quota) { in flexcan_poll() 702 if (flexcan_has_and_handle_berr(priv, reg_esr) && work_done < quota) in flexcan_poll() 705 if (work_done < quota) { in flexcan_poll()
|
D | rcar_can.c | 673 static int rcar_can_rx_poll(struct napi_struct *napi, int quota) in rcar_can_rx_poll() argument 679 for (num_pkts = 0; num_pkts < quota; num_pkts++) { in rcar_can_rx_poll() 697 if (num_pkts < quota) { in rcar_can_rx_poll()
|
D | xilinx_can.c | 702 static int xcan_rx_poll(struct napi_struct *napi, int quota) in xcan_rx_poll() argument 710 while ((isr & XCAN_IXR_RXNEMP_MASK) && (work_done < quota)) { in xcan_rx_poll() 727 if (work_done < quota) { in xcan_rx_poll()
|
D | ti_hecc.c | 613 static int ti_hecc_rx_poll(struct napi_struct *napi, int quota) in ti_hecc_rx_poll() argument 625 num_pkts < quota) { in ti_hecc_rx_poll()
|
D | janz-ican3.c | 848 static int ican3_set_buserror(struct ican3_dev *mod, u8 quota) in ican3_set_buserror() argument 856 msg.data[1] = quota; in ican3_set_buserror()
|
/linux-4.4.14/include/uapi/linux/netfilter/ |
D | xt_quota.h | 16 __aligned_u64 quota; member
|
/linux-4.4.14/fs/ntfs/ |
D | Makefile | 9 ntfs-$(CONFIG_NTFS_RW) += bitmap.o lcnalloc.o logfile.o quota.o usnjrnl.o
|
/linux-4.4.14/fs/gfs2/ |
D | Makefile | 6 ops_fstype.o inode.o quota.o \
|
/linux-4.4.14/kernel/sched/ |
D | core.c | 8290 static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota) in tg_set_cfs_bandwidth() argument 8303 if (quota < min_cfs_quota_period || period < min_cfs_quota_period) in tg_set_cfs_bandwidth() 8320 ret = __cfs_schedulable(tg, period, quota); in tg_set_cfs_bandwidth() 8324 runtime_enabled = quota != RUNTIME_INF; in tg_set_cfs_bandwidth() 8325 runtime_was_enabled = cfs_b->quota != RUNTIME_INF; in tg_set_cfs_bandwidth() 8334 cfs_b->quota = quota; in tg_set_cfs_bandwidth() 8365 u64 quota, period; in tg_set_cfs_quota() local 8369 quota = RUNTIME_INF; in tg_set_cfs_quota() 8371 quota = (u64)cfs_quota_us * NSEC_PER_USEC; in tg_set_cfs_quota() 8373 return tg_set_cfs_bandwidth(tg, period, quota); in tg_set_cfs_quota() [all …]
|
D | fair.c | 3376 if (cfs_b->quota == RUNTIME_INF) in __refill_cfs_bandwidth_runtime() 3380 cfs_b->runtime = cfs_b->quota; in __refill_cfs_bandwidth_runtime() 3409 if (cfs_b->quota == RUNTIME_INF) in assign_cfs_rq_runtime() 3707 if (cfs_b->quota == RUNTIME_INF) in do_sched_cfs_period_timer() 3821 if (cfs_b->quota != RUNTIME_INF && in __return_cfs_rq_runtime() 3863 if (cfs_b->quota != RUNTIME_INF && cfs_b->runtime > slice) in do_sched_cfs_slack_timer() 3960 cfs_b->quota = RUNTIME_INF; in init_cfs_bandwidth() 4005 cfs_rq->runtime_enabled = cfs_b->quota != RUNTIME_INF; in update_runtime_enabled()
|
D | sched.h | 225 u64 quota, runtime; member
|
/linux-4.4.14/scripts/ |
D | ver_linux | 90 quota -V 2>&1 |
|
/linux-4.4.14/drivers/staging/fsl-mc/include/ |
D | dprc.h | 267 u16 quota); 274 u16 *quota);
|
/linux-4.4.14/Documentation/ |
D | highuid.txt | 14 underlying filesystem, because quota records are written at offsets 16 Further investigation is needed to see if the quota system can cope
|
D | Changes | 36 o quota-tools 3.09 # quota -V 192 the newer version 2 quota format. Quota-tools version 3.07 and
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qed/ |
D | qed_hw.c | 232 size_t quota, done = 0; in qed_memcpy_hw() local 236 quota = min_t(size_t, n - done, in qed_memcpy_hw() 242 dw_count = quota / 4; in qed_memcpy_hw() 252 done += quota; in qed_memcpy_hw()
|
/linux-4.4.14/drivers/net/ethernet/adaptec/ |
D | starfire.c | 584 static int __netdev_rx(struct net_device *dev, int *quota); 1404 static int __netdev_rx(struct net_device *dev, int *quota) in __netdev_rx() argument 1429 if (*quota <= 0) { /* out of rx quota */ in __netdev_rx() 1433 (*quota)--; in __netdev_rx() 1439 printk(KERN_DEBUG " netdev_rx() normal Rx pkt length %d, quota %d.\n", pkt_len, *quota); in __netdev_rx() 1512 if (*quota == 0) { /* out of rx quota */ in __netdev_rx() 1532 int quota = budget; in netdev_poll() local 1537 if (__netdev_rx(dev, "a)) in netdev_poll() 1551 budget - quota); in netdev_poll() 1554 return budget - quota; in netdev_poll()
|
/linux-4.4.14/drivers/net/ethernet/ti/ |
D | davinci_cpdma.h | 93 int cpdma_chan_process(struct cpdma_chan *chan, int quota);
|
D | davinci_cpdma.c | 822 int cpdma_chan_process(struct cpdma_chan *chan, int quota) in cpdma_chan_process() argument 829 while (used < quota) { in cpdma_chan_process()
|
/linux-4.4.14/drivers/net/ethernet/sfc/ |
D | nic.h | 658 efx_nic_process_eventq(struct efx_channel *channel, int quota) in efx_nic_process_eventq() argument 660 return channel->efx->type->ev_process(channel, quota); in efx_nic_process_eventq() 684 int efx_farch_ev_process(struct efx_channel *channel, int quota);
|
D | efx.h | 172 bool __efx_filter_rfs_expire(struct efx_nic *efx, unsigned quota);
|
D | rx.c | 936 bool __efx_filter_rfs_expire(struct efx_nic *efx, unsigned int quota) in __efx_filter_rfs_expire() argument 948 while (quota--) { in __efx_filter_rfs_expire()
|
D | ef10.c | 2654 static int efx_ef10_ev_process(struct efx_channel *channel, int quota) in efx_ef10_ev_process() argument 2663 if (quota <= 0) in efx_ef10_ev_process() 2691 if (spent >= quota) { in efx_ef10_ev_process() 2695 spent = quota; in efx_ef10_ev_process() 2702 spent = quota; in efx_ef10_ev_process() 2704 } else if (++spent == quota) { in efx_ef10_ev_process() 2710 if (++spent == quota) in efx_ef10_ev_process()
|
D | net_driver.h | 1286 int (*ev_process)(struct efx_channel *channel, int quota);
|
/linux-4.4.14/drivers/net/can/m_can/ |
D | m_can.c | 418 static int m_can_do_rx_poll(struct net_device *dev, int quota) in m_can_do_rx_poll() argument 430 while ((rxfs & RXFS_FFL_MASK) && (quota > 0)) { in m_can_do_rx_poll() 436 quota--; in m_can_do_rx_poll() 711 static int m_can_poll(struct napi_struct *napi, int quota) in m_can_poll() argument 730 work_done += m_can_do_rx_poll(dev, (quota - work_done)); in m_can_poll() 732 if (work_done < quota) { in m_can_poll()
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | TODO | 22 d) quota support (needs minor kernel change since quota calls
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/ |
D | resource_tracker.c | 324 if (allocated + count > res_alloc->quota[slave]) { in mlx4_grant_resource() 327 allocated, res_alloc->quota[slave]); in mlx4_grant_resource() 422 res_alloc->quota[vf] = (num_instances / 2) + res_alloc->guaranteed[vf]; in initialize_res_quotas() 429 res_alloc->quota[vf] += dev->caps.reserved_mtts; in initialize_res_quotas() 455 priv->mfunc.master.res_tracker.res_alloc[RES_QP].quota[pf]; in mlx4_init_quotas() 457 priv->mfunc.master.res_tracker.res_alloc[RES_CQ].quota[pf]; in mlx4_init_quotas() 459 priv->mfunc.master.res_tracker.res_alloc[RES_SRQ].quota[pf]; in mlx4_init_quotas() 461 priv->mfunc.master.res_tracker.res_alloc[RES_MTT].quota[pf]; in mlx4_init_quotas() 463 priv->mfunc.master.res_tracker.res_alloc[RES_MPT].quota[pf]; in mlx4_init_quotas() 502 res_alloc->quota = kmalloc((dev->persist->num_vfs + 1) * in mlx4_init_resource_tracker() [all …]
|
D | fw.c | 386 size = priv->mfunc.master.res_tracker.res_alloc[RES_QP].quota[slave]; in mlx4_QUERY_FUNC_CAP_wrapper() 391 size = priv->mfunc.master.res_tracker.res_alloc[RES_SRQ].quota[slave]; in mlx4_QUERY_FUNC_CAP_wrapper() 396 size = priv->mfunc.master.res_tracker.res_alloc[RES_CQ].quota[slave]; in mlx4_QUERY_FUNC_CAP_wrapper() 420 size = priv->mfunc.master.res_tracker.res_alloc[RES_MPT].quota[slave]; in mlx4_QUERY_FUNC_CAP_wrapper() 425 size = priv->mfunc.master.res_tracker.res_alloc[RES_MTT].quota[slave]; in mlx4_QUERY_FUNC_CAP_wrapper()
|
D | mlx4.h | 547 int *quota; member
|
/linux-4.4.14/net/sched/ |
D | sch_generic.c | 236 int quota = weight_p; in __qdisc_run() local 245 quota -= packets; in __qdisc_run() 246 if (quota <= 0 || need_resched()) { in __qdisc_run()
|
/linux-4.4.14/fs/ |
D | Makefile | 52 obj-y += quota/
|
D | Kconfig | 78 source "fs/quota/Kconfig"
|
/linux-4.4.14/drivers/net/ethernet/renesas/ |
D | ravb_main.c | 497 static bool ravb_rx(struct net_device *ndev, int *quota, int q) in ravb_rx() argument 512 boguscnt = min(boguscnt, *quota); in ravb_rx() 604 *quota -= limit - (++boguscnt); in ravb_rx() 779 int quota = budget; in ravb_poll() local 792 if (ravb_rx(ndev, "a, q)) in ravb_poll() 828 return budget - quota; in ravb_poll()
|
D | sh_eth.c | 1452 static int sh_eth_rx(struct net_device *ndev, u32 intr_status, int *quota) in sh_eth_rx() argument 1467 boguscnt = min(boguscnt, *quota); in sh_eth_rx() 1583 *quota -= limit - boguscnt - 1; in sh_eth_rx() 1585 return *quota <= 0; in sh_eth_rx() 1779 int quota = budget; in sh_eth_poll() local 1789 if (sh_eth_rx(ndev, intr_status, "a)) in sh_eth_poll() 1799 return budget - quota; in sh_eth_poll()
|
/linux-4.4.14/Documentation/sysctl/ |
D | README | 62 filehandle, inode, dentry and quota tuning
|
D | fs.txt | 82 quota entries. 84 The file dquot-nr shows the number of allocated disk quota 85 entries and the number of free disk quota entries.
|
/linux-4.4.14/Documentation/security/ |
D | keys.txt | 188 files. The root user may also alter the quota limits through sysctl files 192 user's quota. 195 user over quota, the operation is refused and error EDQUOT is returned. 322 Q Contributes to user's quota 330 on the system. Such data includes quota information and statistics: 342 <keys>/<max> Key count quota 343 <bytes>/<max> Key size quota 347 quota limits on keys: 1009 Error EDQUOT can be returned if the keyring would overload the quota (pass 1011 towards the user's quota). Error ENOMEM can also be returned. [all …]
|
/linux-4.4.14/drivers/net/caif/ |
D | caif_virtio.c | 250 static int cfv_rx_poll(struct napi_struct *napi, int quota) in cfv_rx_poll() argument 308 } while (rxcnt < quota); in cfv_rx_poll()
|
/linux-4.4.14/drivers/net/can/mscan/ |
D | mscan.c | 389 static int mscan_rx_poll(struct napi_struct *napi, int quota) in mscan_rx_poll() argument 401 while (npackets < quota) { in mscan_rx_poll()
|
/linux-4.4.14/drivers/staging/fsl-mc/bus/ |
D | dprc.c | 580 u16 quota) in dprc_set_res_quota() argument 588 cmd.params[0] |= mc_enc(32, 16, quota); in dprc_set_res_quota() 630 u16 *quota) in dprc_get_res_quota() argument 662 *quota = mc_dec(cmd.params[0], 32, 16); in dprc_get_res_quota()
|
/linux-4.4.14/drivers/vhost/ |
D | net.c | 454 unsigned int quota) in get_rx_bufs() argument 466 while (datalen > 0 && headcount < quota) { in get_rx_bufs()
|
/linux-4.4.14/fs/ocfs2/ |
D | journal.c | 68 static int __ocfs2_wait_on_mount(struct ocfs2_super *osb, int quota); 2261 static int __ocfs2_wait_on_mount(struct ocfs2_super *osb, int quota) in __ocfs2_wait_on_mount() argument 2267 (!quota && atomic_read(&osb->vol_state) == VOLUME_MOUNTED) || in __ocfs2_wait_on_mount()
|
/linux-4.4.14/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_init.h | 364 vdata->vnic_max_rate[vnic].vn_counter.quota = in bnx2x_init_max()
|
D | bnx2x_hsi.h | 4970 u32 quota; member
|
D | bnx2x_main.c | 2864 m_rs_vn.vn_counter.quota = in bnx2x_handle_afex_cmd()
|
/linux-4.4.14/drivers/net/ethernet/sis/ |
D | sis190.c | 48 #define sis190_rx_quota(count, quota) count argument 582 rx_left = sis190_rx_quota(rx_left, (u32) dev->quota); in sis190_rx_interrupt()
|
/linux-4.4.14/Documentation/crypto/ |
D | asymmetric-keys.txt | 289 quotalen should be updated to indicate how much quota this key should
|
/linux-4.4.14/drivers/net/ethernet/ibm/ehea/ |
D | ehea_main.c | 818 int quota = my_quota; in ehea_proc_cqes() local 826 while (cqe && (quota > 0)) { in ehea_proc_cqes() 865 quota--; in ehea_proc_cqes()
|
/linux-4.4.14/include/uapi/linux/ |
D | Kbuild | 345 header-y += quota.h
|
/linux-4.4.14/drivers/net/vmxnet3/ |
D | vmxnet3_drv.c | 1232 struct vmxnet3_adapter *adapter, int quota) in vmxnet3_rq_rx_complete() argument 1257 if (num_pkts >= quota) { in vmxnet3_rq_rx_complete()
|
/linux-4.4.14/net/core/ |
D | dev.c | 4542 static int process_backlog(struct napi_struct *napi, int quota) in process_backlog() argument 4567 if (++work >= quota) { in process_backlog()
|
/linux-4.4.14/fs/ext4/ |
D | ext4.h | 1732 EXT4_FEATURE_RO_COMPAT_FUNCS(quota, QUOTA) in EXT4_FEATURE_COMPAT_FUNCS()
|
/linux-4.4.14/ |
D | MAINTAINERS | 3504 F: Documentation/filesystems/quota.txt 3505 F: fs/quota/ 3506 F: include/linux/quota*.h 3507 F: include/uapi/linux/quota*.h
|