Searched refs:fdq (Results 1 – 5 of 5) sorted by relevance
/linux-4.4.14/fs/quota/ |
D | quota.c | 207 struct qc_dqblk fdq; in quota_getquota() local 216 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq); in quota_getquota() 219 copy_to_if_dqblk(&idq, &fdq); in quota_getquota() 254 struct qc_dqblk fdq; in quota_setquota() local 265 copy_from_if_dqblk(&fdq, &idq); in quota_setquota() 266 return sb->s_qcop->set_dqblk(sb, qid, &fdq); in quota_setquota() 547 struct fs_disk_quota fdq; in quota_setxquota() local 551 if (copy_from_user(&fdq, addr, sizeof(fdq))) in quota_setxquota() 560 fdq.d_fieldmask & (FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK)) { in quota_setxquota() 566 copy_qcinfo_from_xfs_dqblk(&qinfo, &fdq); in quota_setxquota() [all …]
|
/linux-4.4.14/fs/gfs2/ |
D | quota.c | 779 struct qc_dqblk *fdq) in gfs2_adjust_quota() argument 804 if (fdq) { in gfs2_adjust_quota() 805 if (fdq->d_fieldmask & QC_SPC_SOFT) { in gfs2_adjust_quota() 806 q.qu_warn = cpu_to_be64(fdq->d_spc_softlimit >> sdp->sd_sb.sb_bsize_shift); in gfs2_adjust_quota() 809 if (fdq->d_fieldmask & QC_SPC_HARD) { in gfs2_adjust_quota() 810 q.qu_limit = cpu_to_be64(fdq->d_spc_hardlimit >> sdp->sd_sb.sb_bsize_shift); in gfs2_adjust_quota() 813 if (fdq->d_fieldmask & QC_SPACE) { in gfs2_adjust_quota() 814 q.qu_value = cpu_to_be64(fdq->d_space >> sdp->sd_sb.sb_bsize_shift); in gfs2_adjust_quota() 1573 struct qc_dqblk *fdq) in gfs2_get_dqblk() argument 1581 memset(fdq, 0, sizeof(*fdq)); in gfs2_get_dqblk() [all …]
|
/linux-4.4.14/drivers/soc/ti/ |
D | knav_dma.c | 183 v = cfg->u.rx.fdq[0] << 16; in chan_start() 184 v |= cfg->u.rx.fdq[1] & CHAN_QNUM_MASK; in chan_start() 187 v = cfg->u.rx.fdq[2] << 16; in chan_start() 188 v |= cfg->u.rx.fdq[3] & CHAN_QNUM_MASK; in chan_start() 335 seq_printf(s, "[%d]", chan->cfg.u.rx.fdq[i]); in dma_debug_show_channels()
|
/linux-4.4.14/include/linux/soc/ti/ |
D | knav_dma.h | 113 unsigned int fdq[KNAV_DMA_FDQ_PER_CHAN]; member
|
/linux-4.4.14/drivers/net/ethernet/ti/ |
D | netcp_core.c | 747 static void netcp_free_rx_buf(struct netcp_intf *netcp, int fdq) in netcp_free_rx_buf() argument 756 while ((dma = knav_queue_pop(netcp->rx_fdq[fdq], &dma_sz))) { in netcp_free_rx_buf() 778 if (fdq == 0) { in netcp_free_rx_buf() 808 static int netcp_allocate_rx_buf(struct netcp_intf *netcp, int fdq) in netcp_allocate_rx_buf() argument 825 if (likely(fdq == 0)) { in netcp_allocate_rx_buf() 873 knav_queue_push(netcp->rx_fdq[fdq], dma, sizeof(*hwdesc), 0); in netcp_allocate_rx_buf() 1592 config.u.rx.fdq[i] = last_fdq; in netcp_setup_navigator_resources()
|