I'm get this error if I compile 2.4.21-pre7-ac1 without CONFIG_QUOTA
defined:
fs/fs.o: In function `do_quotactl':
fs/fs.o(.text+0x1b362): undefined reference to `sync_dquots_dev'
make: *** [vmlinux] Error 1
sync_dquots_dev() is only implemented if CONFIG_QUOTA is defined.
However, quote.c uses it unconditionally. include/linux/quotaops.h has
some macros to disable some functions when CONFIG_QUOTA is undefined, so
it's probably where the fix belongs. This patch helps:
==============================
--- linux.orig/include/linux/quotaops.h
+++ linux/include/linux/quotaops.h
@@ -193,6 +193,7 @@
#define DQUOT_SYNC_SB(sb) do { } while(0)
#define DQUOT_OFF(sb) do { } while(0)
#define DQUOT_TRANSFER(inode, iattr) (0)
+#define sync_dquots_dev(dev, type) do { } while(0)
extern __inline__ int DQUOT_PREALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr)
{
lock_kernel();
==============================
-- Regards, Pavel Roskin - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/