Merge branch 'writable_limits' of git://decibel.fi.muni.cz/~xslaby/linux
[cascardo/linux.git] / include / linux / types.h
index 331d8ba..01a082f 100644 (file)
@@ -200,6 +200,18 @@ typedef struct {
 } atomic64_t;
 #endif
 
+struct list_head {
+       struct list_head *next, *prev;
+};
+
+struct hlist_head {
+       struct hlist_node *first;
+};
+
+struct hlist_node {
+       struct hlist_node *next, **pprev;
+};
+
 struct ustat {
        __kernel_daddr_t        f_tfree;
        __kernel_ino_t          f_tinode;