Searched refs:dqp (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_mcg.c157 struct mlx4_promisc_qp *dqp = NULL; local
178 dqp = kmalloc(sizeof *dqp, GFP_KERNEL);
179 if (!dqp) {
183 dqp->qpn = qpn;
184 list_add_tail(&dqp->list, &new_entry->duplicates);
229 if (dqp) {
230 list_del(&dqp->list);
231 kfree(dqp);
246 struct mlx4_promisc_qp *dqp; local
294 struct mlx4_promisc_qp *dqp, *tmp_dqp; local
426 struct mlx4_promisc_qp *dqp; local
557 struct mlx4_promisc_qp *dqp; local
[all...]
/freebsd-11-stable/usr.bin/quota/
H A Dquota.c572 struct dqblk *dqp = &qup->dqblk; local
632 dqp->dqb_bhardlimit =
635 dqp->dqb_bsoftlimit =
638 dqp->dqb_curblocks =
642 dqp->dqb_ihardlimit =
644 dqp->dqb_isoftlimit =
646 dqp->dqb_curinodes =
649 dqp->dqb_btime =
651 dqp->dqb_itime =
/freebsd-11-stable/contrib/ofed/libibumad/
H A Dumad.h209 int umad_set_addr_net(void *umad, __be16 dlid, __be32 dqp, int sl, __be32 qkey);
210 int umad_set_addr(void *umad, int dlid, int dqp, int sl, int qkey);
H A Dumad.c774 int umad_set_addr(void *umad, int dlid, int dqp, int sl, int qkey) argument
778 TRACE("umad %p dlid %u dqp %d sl %d, qkey %x",
779 umad, dlid, dqp, sl, qkey);
780 mad->addr.qpn = htobe32(dqp);
788 int umad_set_addr_net(void *umad, __be16 dlid, __be32 dqp, int sl, __be32 qkey) argument
792 TRACE("umad %p dlid %u dqp %d sl %d qkey %x",
793 umad, be16toh(dlid), be32toh(dqp), sl, be32toh(qkey));
794 mad->addr.qpn = dqp;
/freebsd-11-stable/sys/ufs/ufs/
H A Dufs_quota.c1273 struct dquot **dqp)
1289 if (vp != NULLVP && *dqp != NODQUOT) {
1302 *dqp = NODQUOT;
1327 *dqp = dq;
1383 *dqp = NODQUOT;
1458 *dqp = NODQUOT;
1485 *dqp = dq;
1272 dqget(struct vnode *vp, u_long id, struct ufsmount *ump, int type, struct dquot **dqp) argument
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_vfsops.c130 zfs_getquota(zfsvfs_t *zfsvfs, uid_t id, int isgroup, struct dqblk64 *dqp) argument
156 dqp->dqb_bsoftlimit = dqp->dqb_bhardlimit = btodb(quota);
162 dqp->dqb_curblocks = btodb(used);
163 dqp->dqb_ihardlimit = dqp->dqb_isoftlimit = 0;
170 dqp->dqb_btime = dqp->dqb_itime = now.tv_sec;

Completed in 155 milliseconds