[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Pine.LNX.4.58.0702130506410.29610@shell2.speakeasy.net>
Date: Tue, 13 Feb 2007 05:09:41 -0800 (PST)
From: Trent Piepho <xyzzy@...akeasy.org>
To: Jakub Jelinek <jakub@...hat.com>
cc: Manu Abraham <abraham.manu@...il.com>,
v4l-dvb-maintainer@...uxtv.org, mchehab@...radead.org,
linux-kernel@...r.kernel.org,
Arjan van de Ven <arjan@...radead.org>
Subject: Re: [v4l-dvb-maintainer] Re: dvb shared datastructure bug?
On Tue, 13 Feb 2007, Jakub Jelinek wrote:
> Wouldn't it be better to kmalloc both struct dvb_device and
> struct file_operations together instead of doing 2 separate allocations?
> struct dvd_device_plus_fops
> {
> struct dvb_device dev;
> struct file_operations fops;
> } *dev_fops = kmalloc (sizeof (struct dvd_device_plus_fops), GFP_KERNEL);
> *pdvbdev = dvbdev = (struct dvb_device *)dev_fops;
> if (dev_fops == NULL)
> error handling;
> memset (&dev_fops->fops, 0, sizeof (dev_fops->fops));
> ...
> dvbdev->fops = &dev_fops->fops;
Maybe change struct dvb_device:
struct dvb_device {
struct list_head list_head;
- struct file_operations *fops;
+ struct file_operations fops;
struct dvb_adapter *adapter;
-
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