1

我使用 linux-2.6.31.8 作为我的内核环境。现在我需要对内核中的票证自旋锁进行一些修改。但令我惊讶的是,票证 spinlock.h 文件根本没有被内核编译。我通过添加一些非法的 C 语句和遇到非编译错误来检查这一点。我使用的测试代码如下:

#include <asm/atomic.h>
#include <asm/rwlock.h>
#include <asm/page.h>
#include <asm/processor.h>
#include <linux/compiler.h>
#include <asm/paravirt.h>
test /an invalid statement, but none errors/
/*
 * Your basic SMP spinlocks, allowing only a single CPU anywhere
 *
 * Simple spin lock operations.  There are two variants, one clears IRQ's
 * on the local processor, one does not.
 *
 * These are fair FIFO ticket locks, which are currently limited to 256
 * CPUs.
 *
 * (the type definitions are in asm/spinlock_types.h)
 */

#ifdef CONFIG_X86_32
# define LOCK_PTR_REG "a"
# define REG_PTR_MODE "k"
#else
# define LOCK_PTR_REG "D"
# define REG_PTR_MODE "q"
#endif

任何帮助请。谢谢~~

4

1 回答 1

0

除非某些 .c 文件包含头文件,否则不会编译头文件。

内核很大程度上依赖于配置,它指定要编译哪些文件。也许,在你的配置下,没有一个编译文件使用这个自旋锁。

要找出答案,您可以 grep 查找包含此标头的文件。然后,您应该发现它们是否已编译。您可以使用 makefiles 来发现此文件编译所依赖的配置选项。然后,您可以启用此选项并获得您想要的错误。

编辑:

注意:如果您在没有 SMP 的情况下构建内核,您的内核将不会使用任何自旋锁。

于 2013-07-19T16:30:01.537 回答