All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging/lustre: Fix sparse error (signature mismatch)
@ 2014-07-24 22:50 L. Alberto Giménez
  0 siblings, 0 replies; only message in thread
From: L. Alberto Giménez @ 2014-07-24 22:50 UTC (permalink / raw)
  To: devel; +Cc: Greg Kroah-Hartman, Peng Tao, Andreas Dilger, open list

lprocfs_wr_atomic is defined in
drivers/staging/lustre/lustre/obdclass/lprocfs_status.c with its second argument
with the __user attribute:

int lprocfs_wr_atomic(struct file *file, const char __user *buffer,
              unsigned long count, void *data)

but its declaration in drivers/staging/lustre/lustre/include/lprocfs_status.h does
not include the attribute. Make declaration and definition match.

Signed-off-by: L. Alberto Giménez <agimenez@sysvalve.es>
---
 drivers/staging/lustre/lustre/include/lprocfs_status.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/lustre/lustre/include/lprocfs_status.h b/drivers/staging/lustre/lustre/include/lprocfs_status.h
index 428e3e4..8344157 100644
--- a/drivers/staging/lustre/lustre/include/lprocfs_status.h
+++ b/drivers/staging/lustre/lustre/include/lprocfs_status.h
@@ -604,7 +604,7 @@ extern int lprocfs_obd_seq_create(struct obd_device *dev, const char *name,
 
 extern int lprocfs_rd_u64(struct seq_file *m, void *data);
 extern int lprocfs_rd_atomic(struct seq_file *m, void *data);
-extern int lprocfs_wr_atomic(struct file *file, const char *buffer,
+extern int lprocfs_wr_atomic(struct file *file, const char __user *buffer,
 			     unsigned long count, void *data);
 extern int lprocfs_rd_uint(struct seq_file *m, void *data);
 extern int lprocfs_wr_uint(struct file *file, const char *buffer,
-- 
2.0.1


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

only message in thread, other threads:[~2014-07-24 22:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-24 22:50 [PATCH] staging/lustre: Fix sparse error (signature mismatch) L. Alberto Giménez

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.