All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: add CLANG/LLVM BUILD SUPPORT info
@ 2019-06-19 18:18 Nick Desaulniers
  2019-06-19 18:27 ` Joe Perches
  2019-06-19 19:16 ` [PATCH] " Louis Taylor
  0 siblings, 2 replies; 7+ messages in thread
From: Nick Desaulniers @ 2019-06-19 18:18 UTC (permalink / raw)
  To: akpm; +Cc: clang-built-linux, joe, linux-kernel, Nick Desaulniers

Add keyword support so that our mailing list gets cc'ed for clang/llvm
patches. We're pretty active on our mailing list so far as code review.
There are numerous Googlers like myself that are paid to support
building the Linux kernel with Clang and LLVM.

Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
---
Thanks for Joe Perches for help on the syntax for the case insensitive
syntax.

 MAINTAINERS | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index ef58d9a881ee..fa798cc48e34 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3940,6 +3940,14 @@ M:	Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
 S:	Maintained
 F:	.clang-format
 
+CLANG/LLVM BUILD SUPPORT
+L: clang-built-linux@googlegroups.com
+W: https://clangbuiltlinux.github.io/
+B: https://github.com/ClangBuiltLinux/linux/issues
+C: irc://chat.freenode.net/clangbuiltlinux
+S: Supported
+K: \b(?i:clang|llvm)\b
+
 CLEANCACHE API
 M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
 L:	linux-kernel@vger.kernel.org
-- 
2.22.0.410.gd8fdbe21b5-goog


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] MAINTAINERS: add CLANG/LLVM BUILD SUPPORT info
  2019-06-19 18:18 [PATCH] MAINTAINERS: add CLANG/LLVM BUILD SUPPORT info Nick Desaulniers
@ 2019-06-19 18:27 ` Joe Perches
  2019-06-19 19:53   ` Nick Desaulniers
  2019-06-20  0:19   ` [PATCH v2] " Nick Desaulniers
  2019-06-19 19:16 ` [PATCH] " Louis Taylor
  1 sibling, 2 replies; 7+ messages in thread
From: Joe Perches @ 2019-06-19 18:27 UTC (permalink / raw)
  To: Nick Desaulniers, akpm; +Cc: clang-built-linux, linux-kernel

On Wed, 2019-06-19 at 11:18 -0700, Nick Desaulniers wrote:
> Add keyword support so that our mailing list gets cc'ed for clang/llvm
> patches.

You'd also possibly get cc'd on patches that merely mention
clang or llvm like any change to clang-format.  It could be
many files that aren't interesting.

$ git grep -i -w -P --name-only '(?i:clang|llvm)' | wc -l
134

> diff --git a/MAINTAINERS b/MAINTAINERS
[]
> @@ -3940,6 +3940,14 @@ M:	Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
>  S:	Maintained
>  F:	.clang-format
>  
> +CLANG/LLVM BUILD SUPPORT
> +L: clang-built-linux@googlegroups.com
> +W: https://clangbuiltlinux.github.io/
> +B: https://github.com/ClangBuiltLinux/linux/issues
> +C: irc://chat.freenode.net/clangbuiltlinux
> +S: Supported
> +K: \b(?i:clang|llvm)\b
> +

Please use a single tab after each : like below

CLANG/LLVM BUILD SUPPORT
L:	clang-built-linux@googlegroups.com
W:	https://clangbuiltlinux.github.io/
B:	https://github.com/ClangBuiltLinux/linux/issues
C:	irc://chat.freenode.net/clangbuiltlinux
S:	Supported
K:	\b(?i:clang|llvm)\b



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] MAINTAINERS: add CLANG/LLVM BUILD SUPPORT info
  2019-06-19 18:18 [PATCH] MAINTAINERS: add CLANG/LLVM BUILD SUPPORT info Nick Desaulniers
  2019-06-19 18:27 ` Joe Perches
@ 2019-06-19 19:16 ` Louis Taylor
  2019-06-19 19:50   ` Nick Desaulniers
  1 sibling, 1 reply; 7+ messages in thread
From: Louis Taylor @ 2019-06-19 19:16 UTC (permalink / raw)
  To: Nick Desaulniers; +Cc: akpm, clang-built-linux, joe, linux-kernel

On Wed, Jun 19, 2019 at 11:18:44AM -0700, 'Nick Desaulniers' via Clang Built Linux wrote:
> Add keyword support so that our mailing list gets cc'ed for clang/llvm
> patches. We're pretty active on our mailing list so far as code review.
> There are numerous Googlers like myself that are paid to support
> building the Linux kernel with Clang and LLVM.
> 
> Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
> ---
> Thanks for Joe Perches for help on the syntax for the case insensitive
> syntax.
> 
>  MAINTAINERS | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index ef58d9a881ee..fa798cc48e34 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -3940,6 +3940,14 @@ M:	Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
>  S:	Maintained
>  F:	.clang-format
>  
> +CLANG/LLVM BUILD SUPPORT
> +L: clang-built-linux@googlegroups.com

I think this should have "(moderated for non-subscribers)" added.

Cheers,
Louis

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] MAINTAINERS: add CLANG/LLVM BUILD SUPPORT info
  2019-06-19 19:16 ` [PATCH] " Louis Taylor
@ 2019-06-19 19:50   ` Nick Desaulniers
  0 siblings, 0 replies; 7+ messages in thread
From: Nick Desaulniers @ 2019-06-19 19:50 UTC (permalink / raw)
  To: Louis Taylor; +Cc: Andrew Morton, clang-built-linux, Joe Perches, LKML

On Wed, Jun 19, 2019 at 12:17 PM Louis Taylor <louis@kragniz.eu> wrote:
>
> On Wed, Jun 19, 2019 at 11:18:44AM -0700, 'Nick Desaulniers' via Clang Built Linux wrote:
> > Add keyword support so that our mailing list gets cc'ed for clang/llvm
> > patches. We're pretty active on our mailing list so far as code review.
> > There are numerous Googlers like myself that are paid to support
> > building the Linux kernel with Clang and LLVM.
> > +CLANG/LLVM BUILD SUPPORT
> > +L: clang-built-linux@googlegroups.com
>
> I think this should have "(moderated for non-subscribers)" added.

The current setting is "anyone from the web [may post]" as otherwise
the various CI services reporting there have issues.  There is a basic
spam filter that emails me every so often.  Not sure if that's quite
considered "moderated for non-subscribers" or if I'm just being overly
pedantic? (Point being that I don't think you have to subscribe to
post)
-- 
Thanks,
~Nick Desaulniers

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] MAINTAINERS: add CLANG/LLVM BUILD SUPPORT info
  2019-06-19 18:27 ` Joe Perches
@ 2019-06-19 19:53   ` Nick Desaulniers
  2019-06-20  0:19   ` [PATCH v2] " Nick Desaulniers
  1 sibling, 0 replies; 7+ messages in thread
From: Nick Desaulniers @ 2019-06-19 19:53 UTC (permalink / raw)
  To: Joe Perches; +Cc: Andrew Morton, clang-built-linux, LKML

On Wed, Jun 19, 2019 at 11:27 AM Joe Perches <joe@perches.com> wrote:
>
> On Wed, 2019-06-19 at 11:18 -0700, Nick Desaulniers wrote:
> > Add keyword support so that our mailing list gets cc'ed for clang/llvm
> > patches.
>
> You'd also possibly get cc'd on patches that merely mention
> clang or llvm like any change to clang-format.  It could be
> many files that aren't interesting.
>
> $ git grep -i -w -P --name-only '(?i:clang|llvm)' | wc -l
> 134

That's very much intentional.  We currently get ~11 emails a day from
various CI services (KernelCI, 0day bot), patch authors, etc. so I
don't think this adds too much more and it's mostly signal (signal to
noise).  Maybe the bpf stuff would be less relevant, but I don't think
it hurts.

> Please use a single tab after each : like below

gah! My editor does flag this
(https://github.com/nickdesaulniers/dotfiles/blob/37359525f5a403b4ed2d3f9d1bbbee2da8ec8115/.vimrc#L35-L41)
whether or not I notice is sadly another story. Good catch, v2
inbound.
-- 
Thanks,
~Nick Desaulniers

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH v2] MAINTAINERS: add CLANG/LLVM BUILD SUPPORT info
  2019-06-19 18:27 ` Joe Perches
  2019-06-19 19:53   ` Nick Desaulniers
@ 2019-06-20  0:19   ` Nick Desaulniers
  2019-06-20  2:54     ` Nathan Chancellor
  1 sibling, 1 reply; 7+ messages in thread
From: Nick Desaulniers @ 2019-06-20  0:19 UTC (permalink / raw)
  To: akpm; +Cc: clang-built-linux, joe, linux-kernel, Nick Desaulniers

Add keyword support so that our mailing list gets cc'ed for clang/llvm
patches. We're pretty active on our mailing list so far as code review.
There are numerous Googlers like myself that are paid to support
building the Linux kernel with Clang and LLVM.

Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
---
Changes V1 -> V2:
- tabs vs spaces as per Joe Perches

 MAINTAINERS | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index ef58d9a881ee..f92432452f46 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3940,6 +3940,14 @@ M:	Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
 S:	Maintained
 F:	.clang-format
 
+CLANG/LLVM BUILD SUPPORT
+L:	clang-built-linux@googlegroups.com
+W:	https://clangbuiltlinux.github.io/
+B:	https://github.com/ClangBuiltLinux/linux/issues
+C:	irc://chat.freenode.net/clangbuiltlinux
+S:	Supported
+K:	\b(?i:clang|llvm)\b
+
 CLEANCACHE API
 M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
 L:	linux-kernel@vger.kernel.org
-- 
2.22.0.410.gd8fdbe21b5-goog


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH v2] MAINTAINERS: add CLANG/LLVM BUILD SUPPORT info
  2019-06-20  0:19   ` [PATCH v2] " Nick Desaulniers
@ 2019-06-20  2:54     ` Nathan Chancellor
  0 siblings, 0 replies; 7+ messages in thread
From: Nathan Chancellor @ 2019-06-20  2:54 UTC (permalink / raw)
  To: Nick Desaulniers; +Cc: akpm, clang-built-linux, joe, linux-kernel

On Wed, Jun 19, 2019 at 05:19:07PM -0700, 'Nick Desaulniers' via Clang Built Linux wrote:
> Add keyword support so that our mailing list gets cc'ed for clang/llvm
> patches. We're pretty active on our mailing list so far as code review.
> There are numerous Googlers like myself that are paid to support
> building the Linux kernel with Clang and LLVM.
> 
> Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>

FWIW, if it is not too late:

Reviewed-by: Nathan Chancellor <natechancellor@gmail.com>

> ---
> Changes V1 -> V2:
> - tabs vs spaces as per Joe Perches
> 
>  MAINTAINERS | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index ef58d9a881ee..f92432452f46 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -3940,6 +3940,14 @@ M:	Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
>  S:	Maintained
>  F:	.clang-format
>  
> +CLANG/LLVM BUILD SUPPORT
> +L:	clang-built-linux@googlegroups.com
> +W:	https://clangbuiltlinux.github.io/
> +B:	https://github.com/ClangBuiltLinux/linux/issues
> +C:	irc://chat.freenode.net/clangbuiltlinux
> +S:	Supported
> +K:	\b(?i:clang|llvm)\b
> +
>  CLEANCACHE API
>  M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
>  L:	linux-kernel@vger.kernel.org
> -- 
> 2.22.0.410.gd8fdbe21b5-goog
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-06-20  2:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-19 18:18 [PATCH] MAINTAINERS: add CLANG/LLVM BUILD SUPPORT info Nick Desaulniers
2019-06-19 18:27 ` Joe Perches
2019-06-19 19:53   ` Nick Desaulniers
2019-06-20  0:19   ` [PATCH v2] " Nick Desaulniers
2019-06-20  2:54     ` Nathan Chancellor
2019-06-19 19:16 ` [PATCH] " Louis Taylor
2019-06-19 19:50   ` Nick Desaulniers

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.