The Linux Journalling API | ||
---|---|---|
<<< Previous | Next >>> |
struct journal_callback { struct list_head jcb_list; void (* jcb_func) (struct journal_callback *jcb, int error); }; |
list information for other callbacks attached to the same handle.
Function to call with this callback structure.
This struct is a 'seed' structure for a using with your own callback structs. If you are using callbacks you must allocate one of these or another struct of your own definition which has this struct as it's first element and pass it to journal_callback_set.
This is used internally by jbd to maintain callback information.
See journal_callback_set for more information.
<<< Previous | Home | Next >>> |
typedef journal_t | Up | struct handle_s |