diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-04-02 19:08:26 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-04-02 19:08:26 +0300 |
commit | 54dce3c35bbbeaab8de4b82d3ef3a2f011229662 (patch) | |
tree | d18c5358a9ee9344ac5350e3315d8822464c7698 /Documentation | |
parent | 320b164abb32db876866a4ff8c2cb710524ac6ea (diff) | |
parent | 5ad751053704df3f00d2bb2dc9345c697c212150 (diff) | |
download | linux-54dce3c35bbbeaab8de4b82d3ef3a2f011229662.tar.xz |
Merge branch 'core-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull misc core updates from Ingo Molnar:
"Two changes:
- add membarriers to Documentation/features/
- fix a minor nit in panic printk formatting"
* 'core-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
panic: Add closing panic marker parenthesis
Documentation/features, membarriers: Document membarrier-sync-core architecture support
Documentation/features: Allow comments in arch features files
Diffstat (limited to 'Documentation')
-rwxr-xr-x | Documentation/features/list-arch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/features/list-arch.sh b/Documentation/features/list-arch.sh index c16b5b595688..1ec47c3bb5fa 100755 --- a/Documentation/features/list-arch.sh +++ b/Documentation/features/list-arch.sh @@ -17,7 +17,7 @@ for F in */*/arch-support.txt; do N=$(grep -h "^# Feature name:" $F | cut -c25-) C=$(grep -h "^# Kconfig:" $F | cut -c25-) D=$(grep -h "^# description:" $F | cut -c25-) - S=$(grep -hw $ARCH $F | cut -d\| -f3) + S=$(grep -hv "^#" $F | grep -w $ARCH | cut -d\| -f3) printf "%10s/%-22s:%s| %35s # %s\n" "$SUBSYS" "$N" "$S" "$C" "$D" done |