[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1250967101-29728-1-git-send-email-jirislaby@gmail.com>
Date: Sat, 22 Aug 2009 20:51:41 +0200
From: Jiri Slaby <jirislaby@...il.com>
To: akpm@...ux-foundation.org
Cc: dm-devel@...hat.com, linux-kernel@...r.kernel.org,
Jiri Slaby <jirislaby@...il.com>,
Mike Frysinger <vapier@...too.org>,
"David S. Miller" <davem@...emloft.net>
Subject: [PATCH 1/1] MD: dm-log, fix cn_ulog_callback declaration
The third parameter of cn_add_callback accepts functions with
void *()(struct cn_msg *)
prototype. Change cn_ulog_callback to match it by removing void *
and adding struct cn_msg * directly.
It's introduced by commit:
connector: make callback argument type explicit
Signed-off-by: Jiri Slaby <jirislaby@...il.com>
Cc: Mike Frysinger <vapier@...too.org>
Cc: David S. Miller <davem@...emloft.net>
---
drivers/md/dm-log-userspace-transfer.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/drivers/md/dm-log-userspace-transfer.c b/drivers/md/dm-log-userspace-transfer.c
index 8ce74d9..d945388 100644
--- a/drivers/md/dm-log-userspace-transfer.c
+++ b/drivers/md/dm-log-userspace-transfer.c
@@ -129,9 +129,8 @@ static int fill_pkg(struct cn_msg *msg, struct dm_ulog_request *tfr)
* This is the connector callback that delivers data
* that was sent from userspace.
*/
-static void cn_ulog_callback(void *data)
+static void cn_ulog_callback(struct cn_msg *msg)
{
- struct cn_msg *msg = (struct cn_msg *)data;
struct dm_ulog_request *tfr = (struct dm_ulog_request *)(msg + 1);
spin_lock(&receiving_list_lock);
--
1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists