Revision f558c272386a0f7507cc8de7b6b5afc24d17fa9c authored by Linus Torvalds on 31 March 2012, 01:08:05 UTC, committed by Linus Torvalds on 31 March 2012, 01:08:05 UTC
Pull genirq updates from Thomas Gleixner.

* 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  genirq: Adjust irq thread affinity on IRQ_SET_MASK_OK_NOCOPY return value
  genirq: Respect NUMA node affinity in setup_irq_irq affinity()
  genirq: Get rid of unneeded force parameter in irq_finalize_oneshot()
  genirq: Minor readablity improvement in irq_wake_thread()
2 parent s 3a0d184 + f5cb92a
Raw File
extract
#! /bin/sh

set -e

PREFIX=$1
shift

trap 'rm -r $TMPDIR' 0
TMPDIR=`mktemp -d`

exec 3>/dev/null
for f; do
    while IFS="
" read -r LINE; do
	case "$LINE" in
	    *$PREFIX:[0-9]*:\**)
		NUM=`echo "$LINE" | sed "s/.*$PREFIX:\([0-9]*\).*/\1/"`
		if [ -f $TMPDIR/$NUM ]; then
		    echo "$TMPDIR/$NUM already exits prior to $f"
		    exit 1
		fi
		exec 3>>$TMPDIR/$NUM
		echo $f | sed 's,\.\./,,g' > $TMPDIR/.$NUM
		/bin/echo "$LINE" | sed -e "s/$PREFIX:[0-9]*//" -e "s/:\*/*/" >&3
		;;
	    *$PREFIX:[0-9]*)
		NUM=`echo "$LINE" | sed "s/.*$PREFIX:\([0-9]*\).*/\1/"`
		if [ -f $TMPDIR/$NUM ]; then
		    echo "$TMPDIR/$NUM already exits prior to $f"
		    exit 1
		fi
		exec 3>>$TMPDIR/$NUM
		echo $f | sed 's,\.\./,,g' > $TMPDIR/.$NUM
		/bin/echo "$LINE" | sed "s/$PREFIX:[0-9]*//" >&3
		;;
	    *:\**)
		/bin/echo "$LINE" | sed -e "s/:\*/*/" -e "s,/\*\*/,," >&3
		echo >&3
		exec 3>/dev/null
		;;
	    *)
		/bin/echo "$LINE" >&3
		;;
	esac
    done < $f
    echo >&3
    exec 3>/dev/null
done

LASTFILE=""
for f in $TMPDIR/*; do
    if [ "$LASTFILE" != $(cat $TMPDIR/.$(basename $f) ) ]; then
	LASTFILE=$(cat $TMPDIR/.$(basename $f) )
	echo "[ $LASTFILE ]"
    fi
    cat $f
done

back to top