Fix quota.h includes
quota.h currently relies on asm/semaphore.h (through some chain; it doesn't actually include semaphore.h itself) to include wait.h. As well as being bad practice to rely on an implicit include, subsequent patches will break this. While I'm in this file, add atomic.h and list.h, and sort the list of includes. Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
This commit is contained in:
Родитель
4b119e21d0
Коммит
8b91de2e58
|
@ -160,14 +160,18 @@ enum {
|
||||||
|
|
||||||
|
|
||||||
#ifdef __KERNEL__
|
#ifdef __KERNEL__
|
||||||
#include <linux/spinlock.h>
|
#include <linux/list.h>
|
||||||
#include <linux/rwsem.h>
|
|
||||||
#include <linux/mutex.h>
|
#include <linux/mutex.h>
|
||||||
|
#include <linux/rwsem.h>
|
||||||
|
#include <linux/spinlock.h>
|
||||||
|
#include <linux/wait.h>
|
||||||
|
|
||||||
#include <linux/dqblk_xfs.h>
|
#include <linux/dqblk_xfs.h>
|
||||||
#include <linux/dqblk_v1.h>
|
#include <linux/dqblk_v1.h>
|
||||||
#include <linux/dqblk_v2.h>
|
#include <linux/dqblk_v2.h>
|
||||||
|
|
||||||
|
#include <asm/atomic.h>
|
||||||
|
|
||||||
extern spinlock_t dq_data_lock;
|
extern spinlock_t dq_data_lock;
|
||||||
|
|
||||||
/* Maximal numbers of writes for quota operation (insert/delete/update)
|
/* Maximal numbers of writes for quota operation (insert/delete/update)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче