Message ID | 5cd926191175c4a4a85dc2246adc84bcfac21b1a.1584620202.git.msuchanek@suse.de (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [v11,1/8] powerpc: Add back __ARCH_WANT_SYS_LLSEEK macro | expand |
Context | Check | Description |
---|---|---|
snowpatch_ozlabs/apply_patch | warning | Failed to apply on branch powerpc/merge (8a445cbcb9f5090cb07ec6cbb89a8a1fc99a0ff7) |
snowpatch_ozlabs/apply_patch | warning | Failed to apply on branch powerpc/next (59ed2adf393109c56d383e568f2e57bb5ad6d901) |
snowpatch_ozlabs/apply_patch | warning | Failed to apply on branch linus/master (5076190daded2197f62fe92cf69674488be44175) |
snowpatch_ozlabs/apply_patch | warning | Failed to apply on branch powerpc/fixes (af3d0a68698c7e5df8b72267086b23422a3954bb) |
snowpatch_ozlabs/apply_patch | warning | Failed to apply on branch linux-next (aff7e57f8266549245eb4a272ce149b752dfce77) |
snowpatch_ozlabs/apply_patch | fail | Failed to apply to any branch |
On Thu, Mar 19, 2020 at 2:21 PM Michal Suchanek <msuchanek@suse.de> wrote: > > Signed-off-by: Michal Suchanek <msuchanek@suse.de> > --- > v10: new patch > --- > MAINTAINERS | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/MAINTAINERS b/MAINTAINERS > index bc8dbe4fe4c9..329bf4a31412 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -13088,6 +13088,8 @@ F: arch/*/kernel/*/perf_event*.c > F: arch/*/kernel/*/*/perf_event*.c > F: arch/*/include/asm/perf_event.h > F: arch/*/kernel/perf_callchain.c > +F: arch/*/perf/* > +F: arch/*/perf/*/* > F: arch/*/events/* > F: arch/*/events/*/* > F: tools/perf/ Had you run parse-maintainers.pl?
On Thu, Mar 19, 2020 at 03:37:03PM +0200, Andy Shevchenko wrote: > On Thu, Mar 19, 2020 at 2:21 PM Michal Suchanek <msuchanek@suse.de> wrote: > > > > Signed-off-by: Michal Suchanek <msuchanek@suse.de> > > --- > > v10: new patch > > --- > > MAINTAINERS | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/MAINTAINERS b/MAINTAINERS > > index bc8dbe4fe4c9..329bf4a31412 100644 > > --- a/MAINTAINERS > > +++ b/MAINTAINERS > > @@ -13088,6 +13088,8 @@ F: arch/*/kernel/*/perf_event*.c > > F: arch/*/kernel/*/*/perf_event*.c > > F: arch/*/include/asm/perf_event.h > > F: arch/*/kernel/perf_callchain.c > > +F: arch/*/perf/* > > +F: arch/*/perf/*/* > > F: arch/*/events/* > > F: arch/*/events/*/* > > F: tools/perf/ > > Had you run parse-maintainers.pl? Did not know it exists. The output is: scripts/parse-maintainers.pl Odd non-pattern line ' Documentation/devicetree/bindings/media/ti,cal.yaml ' for 'TI VPE/CAL DRIVERS' at scripts/parse-maintainers.pl line 147, <$file> line 16756. Thanks Michal
On Thu, Mar 19, 2020 at 03:00:08PM +0100, Michal Suchánek wrote: > On Thu, Mar 19, 2020 at 03:37:03PM +0200, Andy Shevchenko wrote: > > On Thu, Mar 19, 2020 at 2:21 PM Michal Suchanek <msuchanek@suse.de> wrote: > > > > > > Signed-off-by: Michal Suchanek <msuchanek@suse.de> > > > --- > > > v10: new patch > > > --- > > > MAINTAINERS | 2 ++ > > > 1 file changed, 2 insertions(+) > > > > > > diff --git a/MAINTAINERS b/MAINTAINERS > > > index bc8dbe4fe4c9..329bf4a31412 100644 > > > --- a/MAINTAINERS > > > +++ b/MAINTAINERS > > > @@ -13088,6 +13088,8 @@ F: arch/*/kernel/*/perf_event*.c > > > F: arch/*/kernel/*/*/perf_event*.c > > > F: arch/*/include/asm/perf_event.h > > > F: arch/*/kernel/perf_callchain.c > > > +F: arch/*/perf/* > > > +F: arch/*/perf/*/* > > > F: arch/*/events/* > > > F: arch/*/events/*/* > > > F: tools/perf/ > > > > Had you run parse-maintainers.pl? > Did not know it exists. The output is: > > scripts/parse-maintainers.pl > Odd non-pattern line ' > Documentation/devicetree/bindings/media/ti,cal.yaml > ' for 'TI VPE/CAL DRIVERS' at scripts/parse-maintainers.pl line 147, > <$file> line 16756. It is fixed in media tree and available in linux next as d44535cb14c9 ("media: MAINTAINERS: Sort entries in database for TI VPE/CAL")
On Thu, 2020-03-19 at 13:19 +0100, Michal Suchanek wrote: > Signed-off-by: Michal Suchanek <msuchanek@suse.de> > --- > v10: new patch > --- > MAINTAINERS | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/MAINTAINERS b/MAINTAINERS > index bc8dbe4fe4c9..329bf4a31412 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -13088,6 +13088,8 @@ F: arch/*/kernel/*/perf_event*.c > F: arch/*/kernel/*/*/perf_event*.c > F: arch/*/include/asm/perf_event.h > F: arch/*/kernel/perf_callchain.c > +F: arch/*/perf/* > +F: arch/*/perf/*/* While I understand the desire, I believe that repetitive listings like this don't really help much. Having a single entry of: F: arch/*/perf/ would serve the same purpose. Nominally, the difference between the 2 entries vs the 1 entry is this: F: arch/*/perf/* Only the specific files in any directory that matches this pattern but not any files in their subdirectories are maintained. F: arch/*/perf/*/* Only the files in any top level subdirectory of any directory that matches this pattern are maintained but not files in any directory of those subdirectories. F: arch/*/perf/ Any file or any file in any subdirectory of any directory that matches this pattern is maintained.
diff --git a/MAINTAINERS b/MAINTAINERS index bc8dbe4fe4c9..329bf4a31412 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -13088,6 +13088,8 @@ F: arch/*/kernel/*/perf_event*.c F: arch/*/kernel/*/*/perf_event*.c F: arch/*/include/asm/perf_event.h F: arch/*/kernel/perf_callchain.c +F: arch/*/perf/* +F: arch/*/perf/*/* F: arch/*/events/* F: arch/*/events/*/* F: tools/perf/
Signed-off-by: Michal Suchanek <msuchanek@suse.de> --- v10: new patch --- MAINTAINERS | 2 ++ 1 file changed, 2 insertions(+)