All of lore.kernel.org
 help / color / mirror / Atom feed
* + ipc-adjust-proc_ipc_sem_dointvec-definition-to-match-prototype.patch added to -mm tree
@ 2020-08-26  0:21 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2020-08-26  0:21 UTC (permalink / raw)
  To: hch, mm-commits, tklauser, viro


The patch titled
     Subject: ipc: adjust proc_ipc_sem_dointvec definition to match prototype
has been added to the -mm tree.  Its filename is
     ipc-adjust-proc_ipc_sem_dointvec-definition-to-match-prototype.patch

This patch should soon appear at
    https://ozlabs.org/~akpm/mmots/broken-out/ipc-adjust-proc_ipc_sem_dointvec-definition-to-match-prototype.patch
and later at
    https://ozlabs.org/~akpm/mmotm/broken-out/ipc-adjust-proc_ipc_sem_dointvec-definition-to-match-prototype.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Tobias Klauser <tklauser@distanz.ch>
Subject: ipc: adjust proc_ipc_sem_dointvec definition to match prototype

Commit 32927393dc1c ("sysctl: pass kernel pointers to ->proc_handler")
changed ctl_table.proc_handler to take a kernel pointer.  Adjust the
signature of proc_ipc_sem_dointvec to match ctl_table.proc_handler which
fixes the following sparse error/warning:

ipc/ipc_sysctl.c:94:47: warning: incorrect type in argument 3 (different address spaces)
ipc/ipc_sysctl.c:94:47:    expected void *buffer
ipc/ipc_sysctl.c:94:47:    got void [noderef] __user *buffer
ipc/ipc_sysctl.c:194:35: warning: incorrect type in initializer (incompatible argument 3 (different address spaces))
ipc/ipc_sysctl.c:194:35:    expected int ( [usertype] *proc_handler )( ... )
ipc/ipc_sysctl.c:194:35:    got int ( * )( ... )

Link: https://lkml.kernel.org/r/20200825105846.5193-1-tklauser@distanz.ch
Fixes: 32927393dc1c ("sysctl: pass kernel pointers to ->proc_handler")
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 ipc/ipc_sysctl.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/ipc/ipc_sysctl.c~ipc-adjust-proc_ipc_sem_dointvec-definition-to-match-prototype
+++ a/ipc/ipc_sysctl.c
@@ -85,7 +85,7 @@ static int proc_ipc_auto_msgmni(struct c
 }
 
 static int proc_ipc_sem_dointvec(struct ctl_table *table, int write,
-	void __user *buffer, size_t *lenp, loff_t *ppos)
+	void *buffer, size_t *lenp, loff_t *ppos)
 {
 	int ret, semmni;
 	struct ipc_namespace *ns = current->nsproxy->ipc_ns;
_

Patches currently in -mm which might be from tklauser@distanz.ch are

ipc-adjust-proc_ipc_sem_dointvec-definition-to-match-prototype.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-08-26  0:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-26  0:21 + ipc-adjust-proc_ipc_sem_dointvec-definition-to-match-prototype.patch added to -mm tree akpm

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.