* [PATCH] ipc: add blank lines after declarations
@ 2020-03-30 10:43 Payal Kshirsagar
0 siblings, 0 replies; only message in thread
From: Payal Kshirsagar @ 2020-03-30 10:43 UTC (permalink / raw)
To: linux-kernel, outreachy-kernel; +Cc: Payal Kshirsagar
Fix checkpatch.pl warning by adding blank lines.
Signed-off-by: Payal Kshirsagar <payalskshirsagar1234@gmail.com>
---
ipc/compat.c | 2 ++
ipc/ipc_sysctl.c | 2 ++
2 files changed, 4 insertions(+)
diff --git a/ipc/compat.c b/ipc/compat.c
index 5ab8225923af..6c03927a4d71 100644
--- a/ipc/compat.c
+++ b/ipc/compat.c
@@ -39,6 +39,7 @@ int get_compat_ipc64_perm(struct ipc64_perm *to,
struct compat_ipc64_perm __user *from)
{
struct compat_ipc64_perm v;
+
if (copy_from_user(&v, from, sizeof(v)))
return -EFAULT;
to->uid = v.uid;
@@ -51,6 +52,7 @@ int get_compat_ipc_perm(struct ipc64_perm *to,
struct compat_ipc_perm __user *from)
{
struct compat_ipc_perm v;
+
if (copy_from_user(&v, from, sizeof(v)))
return -EFAULT;
to->uid = v.uid;
diff --git a/ipc/ipc_sysctl.c b/ipc/ipc_sysctl.c
index affd66537e87..ea115dfd3774 100644
--- a/ipc/ipc_sysctl.c
+++ b/ipc/ipc_sysctl.c
@@ -18,6 +18,7 @@ static void *get_ipc(struct ctl_table *table)
{
char *which = table->data;
struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns;
+
which = (which - (char *)&init_ipc_ns) + (char *)ipc_ns;
return which;
}
@@ -62,6 +63,7 @@ static int proc_ipc_doulongvec_minmax(struct ctl_table *table, int write,
void __user *buffer, size_t *lenp, loff_t *ppos)
{
struct ctl_table ipc_table;
+
memcpy(&ipc_table, table, sizeof(ipc_table));
ipc_table.data = get_ipc(table);
--
2.17.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2020-03-30 10:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-30 10:43 [PATCH] ipc: add blank lines after declarations Payal Kshirsagar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox