The patch titled m68k: fix constraints of the signal functions and some cleanup has been added to the -mm tree. Its filename is m68k-fix-constraints-of-the-signal-functions-and-some-cleanup.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: m68k: fix constraints of the signal functions and some cleanup From: Roman Zippel <zippel@xxxxxxxxxxxxxx> Signed-off-by: Roman Zippel <zippel@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/asm-m68k/signal.h | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff -puN include/asm-m68k/signal.h~m68k-fix-constraints-of-the-signal-functions-and-some-cleanup include/asm-m68k/signal.h --- a/include/asm-m68k/signal.h~m68k-fix-constraints-of-the-signal-functions-and-some-cleanup +++ a/include/asm-m68k/signal.h @@ -156,13 +156,17 @@ typedef struct sigaltstack { static inline void sigaddset(sigset_t *set, int _sig) { - __asm__("bfset %0{%1,#1}" : "=m" (*set) : "id" ((_sig - 1) ^ 31) + asm ("bfset %0{%1,#1}" + : "+od" (*set) + : "id" ((_sig - 1) ^ 31) : "cc"); } static inline void sigdelset(sigset_t *set, int _sig) { - __asm__("bfclr %0{%1,#1}" : "=m"(*set) : "id"((_sig - 1) ^ 31) + asm ("bfclr %0{%1,#1}" + : "+od" (*set) + : "id" ((_sig - 1) ^ 31) : "cc"); } @@ -175,8 +179,10 @@ static inline int __const_sigismember(si static inline int __gen_sigismember(sigset_t *set, int _sig) { int ret; - __asm__("bfextu %1{%2,#1},%0" - : "=d"(ret) : "m"(*set), "id"((_sig-1) ^ 31)); + asm ("bfextu %1{%2,#1},%0" + : "=d" (ret) + : "od" (*set), "id" ((_sig-1) ^ 31) + : "cc"); return ret; } @@ -187,7 +193,10 @@ static inline int __gen_sigismember(sigs static inline int sigfindinword(unsigned long word) { - __asm__("bfffo %1{#0,#0},%0" : "=d"(word) : "d"(word & -word) : "cc"); + asm ("bfffo %1{#0,#0},%0" + : "=d" (word) + : "d" (word & -word) + : "cc"); return word ^ 31; } _ Patches currently in -mm which might be from zippel@xxxxxxxxxxxxxx are origin.patch git-kbuild.patch 64-bit-resources-kconfig-change.patch m68k-fix-uaccessh-for-gcc-3x.patch m68k-fix-constraints-of-the-signal-functions-and-some-cleanup.patch m68k-fix-__iounmap-for-030.patch m68k-small-flush_icache-cleanup.patch m68k-add-the-generic-dma-api-functions.patch m68k-dma-api-addition.patch m68k-fix-show_registers.patch m68k-separate-handler-for-auto-and-user-vector-interrupt.patch m68k-cleanup-generic-irq-names.patch m68k-cleanup-amiga-irq-numbering.patch m68k-introduce-irq-controller.patch m68k-convert-generic-irq-code-to-irq-controller.patch m68k-convert-amiga-irq-code.patch m68k-convert-apollo-irq-code.patch m68k-convert-atari-irq-code.patch m68k-convert-hp300-irq-code.patch m68k-convert-mac-irq-code.patch m68k-convert-q40-irq-code.patch m68k-convert-sun3-irq-code.patch m68k-convert-vme-irq-code.patch affs_fill_super-%s-abuses-2.patch reintegrate-irqreturnh-into-hardirqh.patch time-use-clocksource-abstraction-for-ntp-adjustments-optimize-out-some-mults-since-gcc-cant-avoid-them.patch time-rename-clocksource-functions.patch fix-and-optimize-clock-source-update.patch fix-rt-mutex-defaults-and-dependencies.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html