diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2002-06-09 19:40:49 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-06-09 19:40:49 -0700 |
| commit | b9de2e44b0a6d2e79acc3739090d07ffc1d3683e (patch) | |
| tree | 0c4ad20170847f858e3a58ec960478fa0140299a /include | |
| parent | 70c452adfd781d98ffe5f91c3652f8f1468282fa (diff) | |
| parent | d743e951101b0e2d7db05ebd586ce854f7a55a9d (diff) | |
Merge bk://namesys.com/bk/reiser3-linux-2.5
into home.transmeta.com:/home/torvalds/v2.5/linux
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-arm/atomic.h | 12 | ||||
| -rw-r--r-- | include/asm-arm/bitops.h | 23 | ||||
| -rw-r--r-- | include/asm-arm/suspend.h | 0 | ||||
| -rw-r--r-- | include/asm-arm/system.h | 11 | ||||
| -rw-r--r-- | include/linux/list.h | 59 |
5 files changed, 70 insertions, 35 deletions
diff --git a/include/asm-arm/atomic.h b/include/asm-arm/atomic.h index 59baa4e88114..1930c34e48a3 100644 --- a/include/asm-arm/atomic.h +++ b/include/asm-arm/atomic.h @@ -32,7 +32,7 @@ typedef struct { volatile int counter; } atomic_t; #define atomic_read(v) ((v)->counter) #define atomic_set(v,i) (((v)->counter) = (i)) -static __inline__ void atomic_add(int i, volatile atomic_t *v) +static inline void atomic_add(int i, volatile atomic_t *v) { unsigned long flags; @@ -41,7 +41,7 @@ static __inline__ void atomic_add(int i, volatile atomic_t *v) __restore_flags(flags); } -static __inline__ void atomic_sub(int i, volatile atomic_t *v) +static inline void atomic_sub(int i, volatile atomic_t *v) { unsigned long flags; @@ -50,7 +50,7 @@ static __inline__ void atomic_sub(int i, volatile atomic_t *v) __restore_flags(flags); } -static __inline__ void atomic_inc(volatile atomic_t *v) +static inline void atomic_inc(volatile atomic_t *v) { unsigned long flags; @@ -59,7 +59,7 @@ static __inline__ void atomic_inc(volatile atomic_t *v) __restore_flags(flags); } -static __inline__ void atomic_dec(volatile atomic_t *v) +static inline void atomic_dec(volatile atomic_t *v) { unsigned long flags; @@ -68,7 +68,7 @@ static __inline__ void atomic_dec(volatile atomic_t *v) __restore_flags(flags); } -static __inline__ int atomic_dec_and_test(volatile atomic_t *v) +static inline int atomic_dec_and_test(volatile atomic_t *v) { unsigned long flags; int val; @@ -94,7 +94,7 @@ static inline int atomic_add_negative(int i, volatile atomic_t *v) return val < 0; } -static __inline__ void atomic_clear_mask(unsigned long mask, unsigned long *addr) +static inline void atomic_clear_mask(unsigned long mask, unsigned long *addr) { unsigned long flags; diff --git a/include/asm-arm/bitops.h b/include/asm-arm/bitops.h index c5c8a24a4566..ee813c27ba3a 100644 --- a/include/asm-arm/bitops.h +++ b/include/asm-arm/bitops.h @@ -319,6 +319,12 @@ static inline unsigned long __ffs(unsigned long word) } /* + * fls: find last bit set. + */ + +#define fls(x) generic_fls(x) + +/* * ffs: find first bit set. This is defined the same way as * the libc and compiler builtin ffs routines, therefore * differs in spirit from the above ffz (man ffs). @@ -332,15 +338,14 @@ static inline unsigned long __ffs(unsigned long word) */ static inline int sched_find_first_bit(unsigned long *b) { - if (unlikely(b[0])) - return __ffs(b[0]); - if (unlikely(b[1])) - return __ffs(b[1]) + 32; - if (unlikely(b[2])) - return __ffs(b[2]) + 64; - if (b[3]) - return __ffs(b[3]) + 96; - return __ffs(b[4]) + 128; + unsigned long v; + unsigned int off; + + for (off = 0; v = b[off], off < 4; off++) { + if (unlikely(v)) + break; + } + return __ffs(v) + off * 32; } /* diff --git a/include/asm-arm/suspend.h b/include/asm-arm/suspend.h new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/include/asm-arm/suspend.h diff --git a/include/asm-arm/system.h b/include/asm-arm/system.h index 67f15f1be682..d9a68af9d5f9 100644 --- a/include/asm-arm/system.h +++ b/include/asm-arm/system.h @@ -24,6 +24,17 @@ extern int have_isa_bridge; #define have_isa_bridge (0) #endif +struct pt_regs; + +void die(const char *msg, struct pt_regs *regs, int err) + __attribute__((noreturn)); + +void die_if_kernel(const char *str, struct pt_regs *regs, int err); + +void hook_fault_code(int nr, int (*fn)(unsigned long, unsigned int, + struct pt_regs *), + int sig, const char *name); + #include <asm/proc-fns.h> #define xchg(ptr,x) \ diff --git a/include/linux/list.h b/include/linux/list.h index f6ea9d2d9f25..ac65cc310ab6 100644 --- a/include/linux/list.h +++ b/include/linux/list.h @@ -24,7 +24,7 @@ typedef struct list_head list_t; #define LIST_HEAD_INIT(name) { &(name), &(name) } #define LIST_HEAD(name) \ - struct list_head name = LIST_HEAD_INIT(name) + list_t name = LIST_HEAD_INIT(name) #define INIT_LIST_HEAD(ptr) do { \ (ptr)->next = (ptr); (ptr)->prev = (ptr); \ @@ -36,9 +36,7 @@ typedef struct list_head list_t; * This is only for internal list manipulation where we know * the prev/next entries already! */ -static __inline__ void __list_add(struct list_head * new, - struct list_head * prev, - struct list_head * next) +static inline void __list_add(list_t *new, list_t *prev, list_t *next) { next->prev = new; new->next = next; @@ -54,7 +52,7 @@ static __inline__ void __list_add(struct list_head * new, * Insert a new entry after the specified head. * This is good for implementing stacks. */ -static __inline__ void list_add(struct list_head *new, struct list_head *head) +static inline void list_add(list_t *new, list_t *head) { __list_add(new, head, head->next); } @@ -67,7 +65,7 @@ static __inline__ void list_add(struct list_head *new, struct list_head *head) * Insert a new entry before the specified head. * This is useful for implementing queues. */ -static __inline__ void list_add_tail(struct list_head *new, struct list_head *head) +static inline void list_add_tail(list_t *new, list_t *head) { __list_add(new, head->prev, head); } @@ -79,8 +77,7 @@ static __inline__ void list_add_tail(struct list_head *new, struct list_head *he * This is only for internal list manipulation where we know * the prev/next entries already! */ -static __inline__ void __list_del(struct list_head * prev, - struct list_head * next) +static inline void __list_del(list_t * prev, list_t * next) { next->prev = prev; prev->next = next; @@ -91,7 +88,7 @@ static __inline__ void __list_del(struct list_head * prev, * @entry: the element to delete from the list. * Note: list_empty on entry does not return true after this, the entry is in an undefined state. */ -static __inline__ void list_del(struct list_head *entry) +static inline void list_del(list_t *entry) { __list_del(entry->prev, entry->next); entry->next = (void *) 0; @@ -102,17 +99,39 @@ static __inline__ void list_del(struct list_head *entry) * list_del_init - deletes entry from list and reinitialize it. * @entry: the element to delete from the list. */ -static __inline__ void list_del_init(struct list_head *entry) +static inline void list_del_init(list_t *entry) { __list_del(entry->prev, entry->next); INIT_LIST_HEAD(entry); } /** + * list_move - delete from one list and add as another's head + * @list: the entry to move + * @head: the head that will precede our entry + */ +static inline void list_move(list_t *list, list_t *head) +{ + __list_del(list->prev, list->next); + list_add(list, head); +} + +/** + * list_move_tail - delete from one list and add as another's tail + * @list: the entry to move + * @head: the head that will follow our entry + */ +static inline void list_move_tail(list_t *list, list_t *head) +{ + __list_del(list->prev, list->next); + list_add_tail(list, head); +} + +/** * list_empty - tests whether a list is empty * @head: the list to test. */ -static __inline__ int list_empty(struct list_head *head) +static inline int list_empty(list_t *head) { return head->next == head; } @@ -122,13 +141,13 @@ static __inline__ int list_empty(struct list_head *head) * @list: the new list to add. * @head: the place to add it in the first list. */ -static __inline__ void list_splice(struct list_head *list, struct list_head *head) +static inline void list_splice(list_t *list, list_t *head) { - struct list_head *first = list->next; + list_t *first = list->next; if (first != list) { - struct list_head *last = list->prev; - struct list_head *at = head->next; + list_t *last = list->prev; + list_t *at = head->next; first->prev = head; head->next = first; @@ -140,7 +159,7 @@ static __inline__ void list_splice(struct list_head *list, struct list_head *hea /** * list_entry - get the struct for this entry - * @ptr: the &struct list_head pointer. + * @ptr: the &list_t pointer. * @type: the type of the struct this is embedded in. * @member: the name of the list_struct within the struct. */ @@ -149,7 +168,7 @@ static __inline__ void list_splice(struct list_head *list, struct list_head *hea /** * list_for_each - iterate over a list - * @pos: the &struct list_head to use as a loop counter. + * @pos: the &list_t to use as a loop counter. * @head: the head for your list. */ #define list_for_each(pos, head) \ @@ -157,7 +176,7 @@ static __inline__ void list_splice(struct list_head *list, struct list_head *hea pos = pos->next, prefetch(pos->next)) /** * list_for_each_prev - iterate over a list backwards - * @pos: the &struct list_head to use as a loop counter. + * @pos: the &list_t to use as a loop counter. * @head: the head for your list. */ #define list_for_each_prev(pos, head) \ @@ -166,8 +185,8 @@ static __inline__ void list_splice(struct list_head *list, struct list_head *hea /** * list_for_each_safe - iterate over a list safe against removal of list entry - * @pos: the &struct list_head to use as a loop counter. - * @n: another &struct list_head to use as temporary storage + * @pos: the &list_t to use as a loop counter. + * @n: another &list_t to use as temporary storage * @head: the head for your list. */ #define list_for_each_safe(pos, n, head) \ |
