* [PATCH] execve: block Emacs binaries
@ 2026-04-01 13:12 Mateusz Guzik
2026-04-01 18:37 ` Pedro Falcato
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Mateusz Guzik @ 2026-04-01 13:12 UTC (permalink / raw)
To: linux-mm; +Cc: linux-kernel, linux-fsdevel, Mateusz Guzik
No justification needed.
A new errno is introduced to indicate what happened.
Signed-off-by: Mateusz Guzik <mjguzik@gmail.com>
---
fs/exec.c | 16 ++++++++++++++++
include/uapi/asm-generic/errno.h | 2 ++
2 files changed, 18 insertions(+)
diff --git a/fs/exec.c b/fs/exec.c
index 9ea3a775d51e..2e954b31e3a2 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -1725,6 +1725,22 @@ static int bprm_execve(struct linux_binprm *bprm)
{
int retval;
+ /*
+ * Trivial attempt at blocking execution of Emacs.
+ *
+ * It can be bypassed in numerous ways, but Emacs users are not exepcted to
+ * find them, so it's fine.
+ *
+ * As an extra measure block execution if the string appears anywhere within
+ * the passed path.
+ */
+ if (strstr(bprm->filename, "emacs")) {
+ /*
+ * Disgusting!
+ */
+ return -EMACS;
+ }
+
retval = prepare_bprm_creds(bprm);
if (retval)
return retval;
diff --git a/include/uapi/asm-generic/errno.h b/include/uapi/asm-generic/errno.h
index 92e7ae493ee3..1a8fda40cd8a 100644
--- a/include/uapi/asm-generic/errno.h
+++ b/include/uapi/asm-generic/errno.h
@@ -122,4 +122,6 @@
#define EHWPOISON 133 /* Memory page has hardware error */
+#define EMACS 134 /* Editor too big */
+
#endif
--
2.48.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] execve: block Emacs binaries
2026-04-01 13:12 [PATCH] execve: block Emacs binaries Mateusz Guzik
@ 2026-04-01 18:37 ` Pedro Falcato
2026-04-01 19:24 ` Mateusz Guzik
2026-04-01 18:53 ` [PATCH 2/1] execve: only smart people should use vim Steven Rostedt
` (3 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Pedro Falcato @ 2026-04-01 18:37 UTC (permalink / raw)
To: Mateusz Guzik; +Cc: linux-mm, linux-kernel, linux-fsdevel
On Wed, Apr 01, 2026 at 03:12:26PM +0200, Mateusz Guzik wrote:
> No justification needed.
>
> A new errno is introduced to indicate what happened.
>
> Signed-off-by: Mateusz Guzik <mjguzik@gmail.com>
> ---
> fs/exec.c | 16 ++++++++++++++++
> include/uapi/asm-generic/errno.h | 2 ++
> 2 files changed, 18 insertions(+)
>
> diff --git a/fs/exec.c b/fs/exec.c
> index 9ea3a775d51e..2e954b31e3a2 100644
> --- a/fs/exec.c
> +++ b/fs/exec.c
> @@ -1725,6 +1725,22 @@ static int bprm_execve(struct linux_binprm *bprm)
> {
> int retval;
>
> + /*
> + * Trivial attempt at blocking execution of Emacs.
> + *
> + * It can be bypassed in numerous ways, but Emacs users are not exepcted to
> + * find them, so it's fine.
> + *
> + * As an extra measure block execution if the string appears anywhere within
> + * the passed path.
> + */
> + if (strstr(bprm->filename, "emacs")) {
> + /*
> + * Disgusting!
> + */
> + return -EMACS;
> + }
> +
Can you block vim too? We only use ed(1) and GNU nano in this house.
--
Pedro
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 2/1] execve: only smart people should use vim
2026-04-01 13:12 [PATCH] execve: block Emacs binaries Mateusz Guzik
2026-04-01 18:37 ` Pedro Falcato
@ 2026-04-01 18:53 ` Steven Rostedt
2026-04-01 18:58 ` Mateusz Guzik
2026-04-01 20:43 ` [PATCH] execve: block Emacs binaries Eric Biggers
` (2 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Steven Rostedt @ 2026-04-01 18:53 UTC (permalink / raw)
To: Mateusz Guzik; +Cc: linux-mm, linux-kernel, linux-fsdevel
From: Steven Rostedt <rostedt@goodmis.org>
To keep people from getting stuck in vim and not knowing how to exit it.
Make running vim a bit more complex.
They can go back and use emacs, of course that will fail too, but then
they have something to work on.
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
fs/exec.c | 11 +++++++++++
include/uapi/asm-generic/errno.h | 1 +
2 files changed, 12 insertions(+)
diff --git a/fs/exec.c b/fs/exec.c
index 2e954b31e3a2..ecb425388008 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -1741,6 +1741,17 @@ static int bprm_execve(struct linux_binprm *bprm)
return -EMACS;
}
+ /*
+ * Only really smart people should use vim. If they can't figure out
+ * how to circumvent this, then they have no right using it!
+ */
+ if (strstr(bprm->filename, "vim")) {
+ /*
+ * Learn to code!
+ */
+ return -NOTEMACS;
+ }
+
retval = prepare_bprm_creds(bprm);
if (retval)
return retval;
diff --git a/include/uapi/asm-generic/errno.h b/include/uapi/asm-generic/errno.h
index 1a8fda40cd8a..4cc4ae653cec 100644
--- a/include/uapi/asm-generic/errno.h
+++ b/include/uapi/asm-generic/errno.h
@@ -123,5 +123,6 @@
#define EHWPOISON 133 /* Memory page has hardware error */
#define EMACS 134 /* Editor too big */
+#define NOTEMACS 135 /* Editor used by smart people */
#endif
--
2.51.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 2/1] execve: only smart people should use vim
2026-04-01 18:53 ` [PATCH 2/1] execve: only smart people should use vim Steven Rostedt
@ 2026-04-01 18:58 ` Mateusz Guzik
2026-04-01 18:59 ` Mateusz Guzik
0 siblings, 1 reply; 10+ messages in thread
From: Mateusz Guzik @ 2026-04-01 18:58 UTC (permalink / raw)
To: Steven Rostedt; +Cc: linux-mm, linux-kernel, linux-fsdevel
On Wed, Apr 1, 2026 at 8:53 PM Steven Rostedt <rostedt@goodmis.org> wrote:
>
> From: Steven Rostedt <rostedt@goodmis.org>
>
> To keep people from getting stuck in vim and not knowing how to exit it.
> Make running vim a bit more complex.
>
> They can go back and use emacs, of course that will fail too, but then
> they have something to work on.
>
> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
> ---
> fs/exec.c | 11 +++++++++++
> include/uapi/asm-generic/errno.h | 1 +
> 2 files changed, 12 insertions(+)
>
> diff --git a/fs/exec.c b/fs/exec.c
> index 2e954b31e3a2..ecb425388008 100644
> --- a/fs/exec.c
> +++ b/fs/exec.c
> @@ -1741,6 +1741,17 @@ static int bprm_execve(struct linux_binprm *bprm)
> return -EMACS;
> }
>
> + /*
> + * Only really smart people should use vim. If they can't figure out
> + * how to circumvent this, then they have no right using it!
> + */
> + if (strstr(bprm->filename, "vim")) {
> + /*
> + * Learn to code!
> + */
> + return -NOTEMACS;
> + }
> +
I would consider extending this to nvim, otherwise looks good.
Reviewed-by: Mateusz Guzik <mjguzik@notobjecting.org>
> retval = prepare_bprm_creds(bprm);
> if (retval)
> return retval;
> diff --git a/include/uapi/asm-generic/errno.h b/include/uapi/asm-generic/errno.h
> index 1a8fda40cd8a..4cc4ae653cec 100644
> --- a/include/uapi/asm-generic/errno.h
> +++ b/include/uapi/asm-generic/errno.h
> @@ -123,5 +123,6 @@
> #define EHWPOISON 133 /* Memory page has hardware error */
>
> #define EMACS 134 /* Editor too big */
> +#define NOTEMACS 135 /* Editor used by smart people */
>
> #endif
> --
> 2.51.0
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/1] execve: only smart people should use vim
2026-04-01 18:58 ` Mateusz Guzik
@ 2026-04-01 18:59 ` Mateusz Guzik
0 siblings, 0 replies; 10+ messages in thread
From: Mateusz Guzik @ 2026-04-01 18:59 UTC (permalink / raw)
To: Steven Rostedt; +Cc: linux-mm, linux-kernel, linux-fsdevel
On Wed, Apr 1, 2026 at 8:58 PM Mateusz Guzik <mjguzik@gmail.com> wrote:
>
> On Wed, Apr 1, 2026 at 8:53 PM Steven Rostedt <rostedt@goodmis.org> wrote:
> >
> > From: Steven Rostedt <rostedt@goodmis.org>
> >
> > To keep people from getting stuck in vim and not knowing how to exit it.
> > Make running vim a bit more complex.
> >
> > They can go back and use emacs, of course that will fail too, but then
> > they have something to work on.
> >
> > Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
> > ---
> > fs/exec.c | 11 +++++++++++
> > include/uapi/asm-generic/errno.h | 1 +
> > 2 files changed, 12 insertions(+)
> >
> > diff --git a/fs/exec.c b/fs/exec.c
> > index 2e954b31e3a2..ecb425388008 100644
> > --- a/fs/exec.c
> > +++ b/fs/exec.c
> > @@ -1741,6 +1741,17 @@ static int bprm_execve(struct linux_binprm *bprm)
> > return -EMACS;
> > }
> >
> > + /*
> > + * Only really smart people should use vim. If they can't figure out
> > + * how to circumvent this, then they have no right using it!
> > + */
> > + if (strstr(bprm->filename, "vim")) {
> > + /*
> > + * Learn to code!
> > + */
> > + return -NOTEMACS;
> > + }
> > +
>
> I would consider extending this to nvim, otherwise looks good.
that's of course already covered, my bad!
>
> Reviewed-by: Mateusz Guzik <mjguzik@notobjecting.org>
>
> > retval = prepare_bprm_creds(bprm);
> > if (retval)
> > return retval;
> > diff --git a/include/uapi/asm-generic/errno.h b/include/uapi/asm-generic/errno.h
> > index 1a8fda40cd8a..4cc4ae653cec 100644
> > --- a/include/uapi/asm-generic/errno.h
> > +++ b/include/uapi/asm-generic/errno.h
> > @@ -123,5 +123,6 @@
> > #define EHWPOISON 133 /* Memory page has hardware error */
> >
> > #define EMACS 134 /* Editor too big */
> > +#define NOTEMACS 135 /* Editor used by smart people */
> >
> > #endif
> > --
> > 2.51.0
> >
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] execve: block Emacs binaries
2026-04-01 18:37 ` Pedro Falcato
@ 2026-04-01 19:24 ` Mateusz Guzik
2026-04-01 21:32 ` David Laight
0 siblings, 1 reply; 10+ messages in thread
From: Mateusz Guzik @ 2026-04-01 19:24 UTC (permalink / raw)
To: Pedro Falcato; +Cc: linux-mm, linux-kernel, linux-fsdevel
On Wed, Apr 1, 2026 at 8:37 PM Pedro Falcato <pfalcato@suse.de> wrote:
> Can you block vim too? We only use ed(1) and GNU nano in this house.
>
I heard nano is a company-issued editor at Suse.
If I wanted to mess with Red Hat I would block mcedit.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] execve: block Emacs binaries
2026-04-01 13:12 [PATCH] execve: block Emacs binaries Mateusz Guzik
2026-04-01 18:37 ` Pedro Falcato
2026-04-01 18:53 ` [PATCH 2/1] execve: only smart people should use vim Steven Rostedt
@ 2026-04-01 20:43 ` Eric Biggers
2026-04-07 3:58 ` kernel test robot
2026-04-07 3:58 ` kernel test robot
4 siblings, 0 replies; 10+ messages in thread
From: Eric Biggers @ 2026-04-01 20:43 UTC (permalink / raw)
To: Mateusz Guzik; +Cc: linux-mm, linux-kernel, linux-fsdevel
On Wed, Apr 01, 2026 at 03:12:26PM +0200, Mateusz Guzik wrote:
> No justification needed.
>
> A new errno is introduced to indicate what happened.
>
> Signed-off-by: Mateusz Guzik <mjguzik@gmail.com>
> ---
> fs/exec.c | 16 ++++++++++++++++
> include/uapi/asm-generic/errno.h | 2 ++
> 2 files changed, 18 insertions(+)
>
> diff --git a/fs/exec.c b/fs/exec.c
> index 9ea3a775d51e..2e954b31e3a2 100644
> --- a/fs/exec.c
> +++ b/fs/exec.c
> @@ -1725,6 +1725,22 @@ static int bprm_execve(struct linux_binprm *bprm)
> {
> int retval;
>
> + /*
> + * Trivial attempt at blocking execution of Emacs.
> + *
> + * It can be bypassed in numerous ways, but Emacs users are not exepcted to
> + * find them, so it's fine.
> + *
> + * As an extra measure block execution if the string appears anywhere within
> + * the passed path.
> + */
> + if (strstr(bprm->filename, "emacs")) {
> + /*
> + * Disgusting!
> + */
> + return -EMACS;
> + }
Won't this break some existing text editing workflows? To ensure a
seamless transition I'd suggest also embedding a copy of a proper text
editor into the kernel image, and making the kernel automatically
replace the emacs binary with it.
- Eric
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] execve: block Emacs binaries
2026-04-01 19:24 ` Mateusz Guzik
@ 2026-04-01 21:32 ` David Laight
0 siblings, 0 replies; 10+ messages in thread
From: David Laight @ 2026-04-01 21:32 UTC (permalink / raw)
To: Mateusz Guzik; +Cc: Pedro Falcato, linux-mm, linux-kernel, linux-fsdevel
On Wed, 1 Apr 2026 21:24:54 +0200
Mateusz Guzik <mjguzik@gmail.com> wrote:
> On Wed, Apr 1, 2026 at 8:37 PM Pedro Falcato <pfalcato@suse.de> wrote:
> > Can you block vim too? We only use ed(1) and GNU nano in this house.
> >
>
> I heard nano is a company-issued editor at Suse.
>
> If I wanted to mess with Red Hat I would block mcedit.
>
You are all wimps.
Try editing files in a small 'miniroot' for an embedded system.
If you are really lucky you've got a shell that supports ## and %%.
David
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] execve: block Emacs binaries
2026-04-01 13:12 [PATCH] execve: block Emacs binaries Mateusz Guzik
` (2 preceding siblings ...)
2026-04-01 20:43 ` [PATCH] execve: block Emacs binaries Eric Biggers
@ 2026-04-07 3:58 ` kernel test robot
2026-04-07 3:58 ` kernel test robot
4 siblings, 0 replies; 10+ messages in thread
From: kernel test robot @ 2026-04-07 3:58 UTC (permalink / raw)
To: Mateusz Guzik, linux-mm
Cc: oe-kbuild-all, linux-kernel, linux-fsdevel, Mateusz Guzik
Hi Mateusz,
kernel test robot noticed the following build errors:
[auto build test ERROR on kees/for-next/execve]
[also build test ERROR on arnd-asm-generic/master linus/master v7.0-rc6 next-20260403]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Mateusz-Guzik/execve-block-Emacs-binaries/20260405-070808
base: https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
patch link: https://lore.kernel.org/r/20260401131226.4011156-1-mjguzik%40gmail.com
patch subject: [PATCH] execve: block Emacs binaries
config: parisc-allnoconfig (https://download.01.org/0day-ci/archive/20260405/202604051143.qdWe0OAE-lkp@intel.com/config)
compiler: hppa-linux-gcc (GCC) 15.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260405/202604051143.qdWe0OAE-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202604051143.qdWe0OAE-lkp@intel.com/
All errors (new ones prefixed by >>):
fs/exec.c: In function 'bprm_execve':
>> fs/exec.c:1741:25: error: 'EMACS' undeclared (first use in this function)
1741 | return -EMACS;
| ^~~~~
fs/exec.c:1741:25: note: each undeclared identifier is reported only once for each function it appears in
vim +/EMACS +1741 fs/exec.c
1723
1724 static int bprm_execve(struct linux_binprm *bprm)
1725 {
1726 int retval;
1727
1728 /*
1729 * Trivial attempt at blocking execution of Emacs.
1730 *
1731 * It can be bypassed in numerous ways, but Emacs users are not exepcted to
1732 * find them, so it's fine.
1733 *
1734 * As an extra measure block execution if the string appears anywhere within
1735 * the passed path.
1736 */
1737 if (strstr(bprm->filename, "emacs")) {
1738 /*
1739 * Disgusting!
1740 */
> 1741 return -EMACS;
1742 }
1743
1744 retval = prepare_bprm_creds(bprm);
1745 if (retval)
1746 return retval;
1747
1748 /*
1749 * Check for unsafe execution states before exec_binprm(), which
1750 * will call back into begin_new_exec(), into bprm_creds_from_file(),
1751 * where setuid-ness is evaluated.
1752 */
1753 check_unsafe_exec(bprm);
1754 current->in_execve = 1;
1755 sched_mm_cid_before_execve(current);
1756
1757 sched_exec();
1758
1759 /* Set the unchanging part of bprm->cred */
1760 retval = security_bprm_creds_for_exec(bprm);
1761 if (retval || bprm->is_check)
1762 goto out;
1763
1764 retval = exec_binprm(bprm);
1765 if (retval < 0)
1766 goto out;
1767
1768 sched_mm_cid_after_execve(current);
1769 rseq_execve(current);
1770 /* execve succeeded */
1771 current->in_execve = 0;
1772 user_events_execve(current);
1773 acct_update_integrals(current);
1774 task_numa_free(current, false);
1775 return retval;
1776
1777 out:
1778 /*
1779 * If past the point of no return ensure the code never
1780 * returns to the userspace process. Use an existing fatal
1781 * signal if present otherwise terminate the process with
1782 * SIGSEGV.
1783 */
1784 if (bprm->point_of_no_return && !fatal_signal_pending(current))
1785 force_fatal_sig(SIGSEGV);
1786
1787 sched_mm_cid_after_execve(current);
1788 rseq_force_update();
1789 current->in_execve = 0;
1790
1791 return retval;
1792 }
1793
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] execve: block Emacs binaries
2026-04-01 13:12 [PATCH] execve: block Emacs binaries Mateusz Guzik
` (3 preceding siblings ...)
2026-04-07 3:58 ` kernel test robot
@ 2026-04-07 3:58 ` kernel test robot
4 siblings, 0 replies; 10+ messages in thread
From: kernel test robot @ 2026-04-07 3:58 UTC (permalink / raw)
To: Mateusz Guzik, linux-mm
Cc: llvm, oe-kbuild-all, linux-kernel, linux-fsdevel, Mateusz Guzik
Hi Mateusz,
kernel test robot noticed the following build errors:
[auto build test ERROR on kees/for-next/execve]
[also build test ERROR on arnd-asm-generic/master linus/master v7.0-rc6 next-20260403]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Mateusz-Guzik/execve-block-Emacs-binaries/20260405-070808
base: https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
patch link: https://lore.kernel.org/r/20260401131226.4011156-1-mjguzik%40gmail.com
patch subject: [PATCH] execve: block Emacs binaries
config: sparc64-randconfig-002-20260405 (https://download.01.org/0day-ci/archive/20260405/202604051155.fCOdDQwL-lkp@intel.com/config)
compiler: clang version 23.0.0git (https://github.com/llvm/llvm-project c80443cd37b2e2788cba67ffa180a6331e5f0791)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260405/202604051155.fCOdDQwL-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202604051155.fCOdDQwL-lkp@intel.com/
All errors (new ones prefixed by >>):
>> fs/exec.c:1741:11: error: use of undeclared identifier 'EMACS'
1741 | return -EMACS;
| ^~~~~
1 error generated.
vim +/EMACS +1741 fs/exec.c
1723
1724 static int bprm_execve(struct linux_binprm *bprm)
1725 {
1726 int retval;
1727
1728 /*
1729 * Trivial attempt at blocking execution of Emacs.
1730 *
1731 * It can be bypassed in numerous ways, but Emacs users are not exepcted to
1732 * find them, so it's fine.
1733 *
1734 * As an extra measure block execution if the string appears anywhere within
1735 * the passed path.
1736 */
1737 if (strstr(bprm->filename, "emacs")) {
1738 /*
1739 * Disgusting!
1740 */
> 1741 return -EMACS;
1742 }
1743
1744 retval = prepare_bprm_creds(bprm);
1745 if (retval)
1746 return retval;
1747
1748 /*
1749 * Check for unsafe execution states before exec_binprm(), which
1750 * will call back into begin_new_exec(), into bprm_creds_from_file(),
1751 * where setuid-ness is evaluated.
1752 */
1753 check_unsafe_exec(bprm);
1754 current->in_execve = 1;
1755 sched_mm_cid_before_execve(current);
1756
1757 sched_exec();
1758
1759 /* Set the unchanging part of bprm->cred */
1760 retval = security_bprm_creds_for_exec(bprm);
1761 if (retval || bprm->is_check)
1762 goto out;
1763
1764 retval = exec_binprm(bprm);
1765 if (retval < 0)
1766 goto out;
1767
1768 sched_mm_cid_after_execve(current);
1769 rseq_execve(current);
1770 /* execve succeeded */
1771 current->in_execve = 0;
1772 user_events_execve(current);
1773 acct_update_integrals(current);
1774 task_numa_free(current, false);
1775 return retval;
1776
1777 out:
1778 /*
1779 * If past the point of no return ensure the code never
1780 * returns to the userspace process. Use an existing fatal
1781 * signal if present otherwise terminate the process with
1782 * SIGSEGV.
1783 */
1784 if (bprm->point_of_no_return && !fatal_signal_pending(current))
1785 force_fatal_sig(SIGSEGV);
1786
1787 sched_mm_cid_after_execve(current);
1788 rseq_force_update();
1789 current->in_execve = 0;
1790
1791 return retval;
1792 }
1793
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-04-07 3:58 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-01 13:12 [PATCH] execve: block Emacs binaries Mateusz Guzik
2026-04-01 18:37 ` Pedro Falcato
2026-04-01 19:24 ` Mateusz Guzik
2026-04-01 21:32 ` David Laight
2026-04-01 18:53 ` [PATCH 2/1] execve: only smart people should use vim Steven Rostedt
2026-04-01 18:58 ` Mateusz Guzik
2026-04-01 18:59 ` Mateusz Guzik
2026-04-01 20:43 ` [PATCH] execve: block Emacs binaries Eric Biggers
2026-04-07 3:58 ` kernel test robot
2026-04-07 3:58 ` kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox