UFS Repquota showing only the root user

Here is my /etc/fstab:

Code:
# Device        Mountpoint      FStype  Options Dump    Pass#
/dev/raid/r0s1a /               ufs     rw,userquota,groupquota 1       1
/dev/raid/r0s1b none            swap    sw      0       0
/dev/raid/r1p1  /home/admin/bup ufs     rw      2       2
/dev/raid/r2p1  /mailraid       ufs     rw      2       2
proc            /proc           procfs  rw      0       0
tmpfs           /tmp            tmpfs   rw,mode=777     0       0
md99            none    swap    sw,file=/mailraid/swap0,late    0       0

Quotas are enabled:

Code:
root@srv2:~ # sysctl kern.features.ufs_quota
kern.features.ufs_quota: 1

and they seem to work when I check individual user with the "quota" binary:

Code:
root@srv2:~ # quota -v cphpvb
Disk quotas for user cphpvb (uid 1271):
Filesystem        usage    quota   limit   grace  files   quota  limit   grace
/               5548276  20480000 22528000          94837       0      0

When I run the repquota however it is only showing the root user:

Code:
root@srv2:~ # repquota /
                                           Block  limits                    File  limits
User                                  used   soft   hard  grace     used    soft    hard  grace
root                             -- 18870420      0      0      -   846870       0       0      -

AFAIK it must show all users there. I did run

Code:
/usr/sbin/quotaoff -a; /sbin/quotacheck -avug; /usr/sbin/quotaon -a;

and it did not help.

Any thoughts on that?

OS: FreeBSD 11.3 (recently updated with the freebsd-update utility from 11.2).
 
On the "Frequently Asked Questions for FreeBSD 11.X and 12.X" page for FreeBSD 11/12:


I did find the following:

Code:
Do not turn on quotas on /.

It did not explain why but it looks like that this is the reason for my failure, is it?

Now am I stuck with non-working quotas unless I repartition (which means reinstall) everything? Is there some easy fix for my situation?
 
Back
Top