Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1303427 > unrolled thread
| Started by | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| First post | 2016-01-07 10:50 +0100 |
| Last post | 2016-01-07 11:10 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[patch] MAINTAINERS: fix MIC maintainers entry Dan Carpenter <dan.carpenter@oracle.com> - 2016-01-07 10:50 +0100
Re: [patch] MAINTAINERS: fix MIC maintainers entry Dan Carpenter <dan.carpenter@oracle.com> - 2016-01-07 10:50 +0100
Re: [patch] MAINTAINERS: fix MIC maintainers entry Joe Perches <joe@perches.com> - 2016-01-07 11:10 +0100
| From | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| Date | 2016-01-07 10:50 +0100 |
| Subject | [patch] MAINTAINERS: fix MIC maintainers entry |
| Message-ID | <qOfmF-6i1-5@gated-at.bofh.it> |
There were some missing colons so we stop parsing the MIC maintainers
entry early. It means that:
./scripts/get_maintainer.pl -f drivers/misc/mic/card/mic_virtio.c
doesn't work.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
diff --git a/MAINTAINERS b/MAINTAINERS
index 248828d..070346d 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -5749,11 +5749,11 @@ F: include/linux/mic_bus.h
F: include/linux/scif.h
F: include/uapi/linux/mic_common.h
F: include/uapi/linux/mic_ioctl.h
-F include/uapi/linux/scif_ioctl.h
+F: include/uapi/linux/scif_ioctl.h
F: drivers/misc/mic/
F: drivers/dma/mic_x100_dma.c
F: drivers/dma/mic_x100_dma.h
-F Documentation/mic/
+F: Documentation/mic/
INTEL PMC/P-Unit IPC DRIVER
M: Zha Qipeng<qipeng.zha@intel.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| Date | 2016-01-07 10:50 +0100 |
| Message-ID | <qOfmG-6i1-11@gated-at.bofh.it> |
| In reply to | #1303427 |
I wrote some bash to find problems in MAINTAINERS. I'm not sure what to
do with it.
# Grep for missing colons
for i in $(cut -b 1-2 MAINTAINERS | grep : | sort | uniq | cut -b 1) ; do
egrep "^$i[ ]" MAINTAINERS
done
# Grep for non-existing files
for i in $(grep ^F: MAINTAINERS | grep -v '\*' | cut -d : -f 2-) ; do
if ! test -e $i ; then
echo $i
fi
done
regards,
dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2016-01-07 11:10 +0100 |
| Message-ID | <qOfG3-6Gn-31@gated-at.bofh.it> |
| In reply to | #1303428 |
On Thu, 2016-01-07 at 12:43 +0300, Dan Carpenter wrote: > I wrote some bash to find problems in MAINTAINERS. I'm not sure what to > do with it. > > # Grep for missing colons > for i in $(cut -b 1-2 MAINTAINERS | grep : | sort | uniq | cut -b 1) ; do > egrep "^$i[ ]" MAINTAINERS > done > > # Grep for non-existing files > for i in $(grep ^F: MAINTAINERS | grep -v '\*' | cut -d : -f 2-) ; do > if ! test -e $i ; then > echo $i > fi > done I run a similar script every once in awhile. Here's my current list with -next: $ verify_maintainer_patterns.pl 0 drivers/infiniband/hw/amso1100/ 0 arch/arm/mach-pxa/include/mach/palmt5.h 0 arch/arm/mach-pxa/include/mach/palmte2.h 0 arch/arm/mach-pxa/include/mach/palmtreo.h 0 arch/arm/mach-pxa/include/mach/palmz72.h 0 arch/arm/plat-samsung/s5p-dev-mfc.c 0 include/media/atmel-isi.h 0 arch/mips/bcm3384/* 0 arch/mips/include/asm/mach-bcm3384/* 0 Documentation/cgroups/cpusets.txt 0 drivers/media/i2c/cs3308.h 0 include/media/cx2341x* 0 include/uapi/scsi/cxlflash_ioctls.h 0 Documentation/devicetree/bindings/drm/atmel/ 0 Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt 0 include/drm/gma500* 0 drivers/infiniband/hw/ehca/ 0 drivers/crypto/nx/nx_debugfs.h 0 Documentation/devicetree/bindings/i2c/ina209.txt 0 Documentation/s390/kvm.txt 0 drivers/scsi/mpt2sas/ 0 drivers/hwmon/max20751.c 0 Documentation/devicetree/bindings/i2c/max6697.txt 0 include/media/saa7146* 0 drivers/staging/ft1000/ 0 fs/hppfs/ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web