Q_QUOTAOFF(2const) Q_QUOTAOFF(2const)

Q_QUOTAOFF - turn off quotas for a filesystem

Standard C library (libc-lc)

#include <sys/quota.h>
int quotactl(QCMD(Q_QUOTAOFF, type), const char *_Nullable special,
             0, NULL);
#include <sys/quota.h>    /* Definition of Q_* constants */
#include <sys/syscall.h>  /* Definition of SYS_* constants */
#include <unistd.h>
int syscall(SYS_quotactl_fd, int fd, QCMD(Q_QUOTAOFF, type));

Turn off quotas for a filesystem.

This operation requires privilege (CAP_SYS_ADMIN).

See quotactl(2).

See quotactl(2).

Linux.

Linux.

quotactl(2), quotactl_fd(2), Q_QUOTAON(2const)

2026-06-05 Linux man-pages 6.19