|
@@ -758,7 +758,7 @@ struct cl_page {
|
|
|
/**
|
|
|
* Debug information, the task is owning the page.
|
|
|
*/
|
|
|
- task_t *cp_task;
|
|
|
+ struct task_struct *cp_task;
|
|
|
/**
|
|
|
* Owning IO request in cl_page_state::CPS_PAGEOUT and
|
|
|
* cl_page_state::CPS_PAGEIN states. This field is maintained only in
|
|
@@ -1576,13 +1576,13 @@ struct cl_lock {
|
|
|
* \see osc_lock_enqueue_wait(), lov_lock_cancel(), lov_sublock_wait().
|
|
|
*/
|
|
|
struct mutex cll_guard;
|
|
|
- task_t *cll_guarder;
|
|
|
+ struct task_struct *cll_guarder;
|
|
|
int cll_depth;
|
|
|
|
|
|
/**
|
|
|
* the owner for INTRANSIT state
|
|
|
*/
|
|
|
- task_t *cll_intransit_owner;
|
|
|
+ struct task_struct *cll_intransit_owner;
|
|
|
int cll_error;
|
|
|
/**
|
|
|
* Number of holds on a lock. A hold prevents a lock from being
|
|
@@ -1869,7 +1869,7 @@ do { \
|
|
|
struct cl_page_list {
|
|
|
unsigned pl_nr;
|
|
|
struct list_head pl_pages;
|
|
|
- task_t *pl_owner;
|
|
|
+ struct task_struct *pl_owner;
|
|
|
};
|
|
|
|
|
|
/**
|