Skip to content

Commit

Permalink
uml got broken by commit 30742d5
Browse files Browse the repository at this point in the history
... if you revert a commit, revert the fixups elsewhere that had been
triggered by it.  Such as 8c56250
(lockdep, UML: fix compilation when CONFIG_TRACE_IRQFLAGS_SUPPORT is not set).

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jan 6, 2009
1 parent 22409f9 commit 7483cb7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions arch/um/include/asm/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ extern int get_signals(void);
extern void block_signals(void);
extern void unblock_signals(void);

#define raw_local_save_flags(flags) do { typecheck(unsigned long, flags); \
#define local_save_flags(flags) do { typecheck(unsigned long, flags); \
(flags) = get_signals(); } while(0)
#define raw_local_irq_restore(flags) do { typecheck(unsigned long, flags); \
#define local_irq_restore(flags) do { typecheck(unsigned long, flags); \
set_signals(flags); } while(0)

#define raw_local_irq_save(flags) do { raw_local_save_flags(flags); \
raw_local_irq_disable(); } while(0)
#define local_irq_save(flags) do { local_save_flags(flags); \
local_irq_disable(); } while(0)

#define raw_local_irq_enable() unblock_signals()
#define raw_local_irq_disable() block_signals()
#define local_irq_enable() unblock_signals()
#define local_irq_disable() block_signals()

#define irqs_disabled() \
({ \
unsigned long flags; \
raw_local_save_flags(flags); \
local_save_flags(flags); \
(flags == 0); \
})

Expand Down

0 comments on commit 7483cb7

Please sign in to comment.