#define SYNCHRONIZE() barrier()
#define rootdev ROOT_DEV
#define __return_address __builtin_return_address(0)
-#define LONGLONG_MAX 9223372036854775807LL /* max "long long int" */
-#define nopkg() ( ENOSYS )
/* IRIX uses a dynamic sizing algorithm (ndquot = 200 + numprocs*2) */
/* we may well need to fine-tune this if it ever becomes an issue. */
*/
error = 0;
if (buf_f->blf_flags & (XFS_BLI_UDQUOT_BUF|XFS_BLI_GDQUOT_BUF)) {
- /* OK, if this returns nopkg() */
+ /* OK, if this returns ENOSYS */
error = xfs_qm_dqcheck((xfs_disk_dquot_t *)
item->ri_buf[i].i_addr,
-1, 0, XFS_QMOPT_DOWARN,
* of looking at the SB quota bits.
*
* The other possibility, of course, is that the quota subsystem was
- * removed since the last mount - nopkg().
+ * removed since the last mount - ENOSYS.
*/
dq_f = (xfs_dq_logformat_t *)item->ri_buf[0].i_addr;
ASSERT(dq_f);
dq_f->qlf_id,
0, XFS_QMOPT_DOWARN,
"xlog_recover_do_dquot_trans (log copy)"))) {
- if ((error == nopkg()))
+ if (error == ENOSYS)
return (0);
return XFS_ERROR(EIO);
}