> -----Original Message----- > From: Joe Perches [mailto:[email protected]] > Sent: Tuesday, April 16, 2013 4:31 PM > To: Haiyang Zhang > Cc: David Miller; [email protected]; KY Srinivasan; [email protected]; > [email protected]; [email protected]; > [email protected] > Subject: Re: [PATCH net] hyperv: Fix a compiler warning in netvsc_send() > > On Tue, 2013-04-16 at 20:18 +0000, Haiyang Zhang wrote: > > > From: David Miller [mailto:[email protected]] It works fine, but > > > it's unclean. > > > Keep the req_id type as "u64", because that's what it is, a 64-bit request > ID. > > I will make this update and submit a new patch, with the added comments. > > Do you mean you'll use this to avoid compiler warnings? > > req_id = (u64)(unsigned long)packet;
I will use: req_id = (ulong)packet; Assigning 32 bit integer to 64 bit variable is fine. Thanks, - Haiyang _______________________________________________ devel mailing list [email protected] http://driverdev.linuxdriverproject.org/mailman/listinfo/devel
