Searched refs:dq_count (Results 1 - 7 of 7) sorted by relevance

/linux-master/include/net/
H A Dpie.h47 * @dq_count: number of bytes dequeued in a measurement cycle
58 u64 dq_count; member in struct:pie_vars
106 vars->dq_count = DQCOUNT_INVALID;
/linux-master/net/sched/
H A Dsch_pie.c231 /* If current queue is about 10 packets or more and dq_count is unset
235 if (backlog >= QUEUE_THRESHOLD && vars->dq_count == DQCOUNT_INVALID) {
237 vars->dq_count = 0;
242 * the dq_count to -1 as we don't have enough packets to calculate the
245 * and we calculate the drain rate for the threshold here. dq_count is
249 if (vars->dq_count != DQCOUNT_INVALID) {
250 vars->dq_count += skb->len;
252 if (vars->dq_count >= QUEUE_THRESHOLD) {
253 u32 count = vars->dq_count << PIE_SCALE;
271 * dq_count t
[all...]
/linux-master/include/linux/
H A Dquotaops.h50 WARN_ON_ONCE(!atomic_read(&dquot->dq_count));
52 atomic_inc(&dquot->dq_count);
60 if (atomic_read(&dquot->dq_count) > 0)
H A Dquota.h303 atomic_t dq_count; /* Use count */ member in struct:dquot
/linux-master/fs/quota/
H A Ddquot.c587 if (atomic_read(&dquot->dq_count)) {
588 atomic_inc(&dquot->dq_count);
595 * Otherwise dq_count would be > 1 and we would never
599 atomic_read(&dquot->dq_count) == 1);
644 atomic_inc(&dquot->dq_count);
826 WARN_ON_ONCE(atomic_read(&dquot->dq_count));
858 if (!atomic_read(&dquot->dq_count)) {
868 if (atomic_read(&dquot->dq_count) > 1) {
870 atomic_dec(&dquot->dq_count);
873 atomic_read(&dquot->dq_count)
[all...]
/linux-master/drivers/media/common/videobuf2/
H A Dvideobuf2-core.c2701 unsigned int dq_count; member in struct:vb2_fileio_data
2927 fileio->dq_count += 1;
2990 if (read && fileio->read_once && fileio->dq_count == 1) {
/linux-master/drivers/scsi/be2iscsi/
H A Dbe_cmds.h1219 u32 dq_count; member in struct:be_ulp_fw_cfg

Completed in 116 milliseconds