From: Johann D. <jo...@Do...> - 2002-01-24 09:18:08
|
Hi, When Kernel Debugging is enabled, the nfs code does not compile. This is due to kernel.h defining do_BUG. It's called from dcache.h by calling BUG(). I guess BUG is a macro calling do_BUG(). As kernel.h is apparently included after dcache.h from the nfs code, the compiler first complains about do_BUG being implicitely declared to return an int, and then complains again when it's defined in dcache.h to return something else. The fix would be simple: change the nfs code. However, I guess it is not a very good idea to include the nfs code in the linuxconsole tree. Any other solution ? -- Johann Deneux |