All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] firewire:queue the right number of data
@ 2008-07-19  7:35 ` JiSheng Zhang
  2008-07-20 14:00   ` Stefan Richter
       [not found]   ` <416562490.30709@ustc.edu.cn>
  0 siblings, 2 replies; 3+ messages in thread
From: JiSheng Zhang @ 2008-07-19  7:35 UTC (permalink / raw)
  To: stefanr; +Cc: linux-kernel

Hi,

There will be 4 padding bytes in struct fw_cdev_event_response on some platforms
The member:__u32 data will point to these padding bytes. While queue the
response and data in complete_transaction in fw-cdev.c, it will queue like this:
|response(excluding padding bytes)|4 padding bytes|4 padding bytes|data. 
It queue 4 extra bytes. That is to say it use "&response + sizeof(response)"
while other place of kernel and userspace library use "&response + offsetof
(typeof(response), data)". So it will lost the last 4 bytes of data.This patch 
can fix it while not changing the struct definition.

Sorry for open a new ticket.

Signed-off-by: JiSheng Zhang <jszhang3@mail.ustc.edu.cn>

--- old/drivers/firewire/fw-cdev.c
+++ new/drivers/firewire/fw-cdev.c
@@ -382,9 +382,9 @@
 
 	response->response.type   = FW_CDEV_EVENT_RESPONSE;
 	response->response.rcode  = rcode;
-	queue_event(client, &response->event,
-		    &response->response, sizeof(response->response),
-		    response->response.data, response->response.length);
+	queue_event(client, &response->event, &response->response, 
+		    sizeof(response->response) + response->response.length,
+		    NULL, 0);
 }
 
 static int ioctl_send_request(struct client *client, void *buffer)

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-07-21  6:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-19  7:35 [PATCH] firewire:queue the right number of data JiSheng Zhang
2008-07-19  7:35 ` JiSheng Zhang
2008-07-20 14:00   ` Stefan Richter
     [not found]   ` <416562490.30709@ustc.edu.cn>
2008-07-21  6:48     ` JiSheng Zhang
2008-07-21  6:48       ` JiSheng Zhang

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.