staging: comedi: only set dev->n_subdevices when kcalloc succeedes
It's possible for the kcalloc in comedi_alloc_subdevices to fail. Only set the dev->n_subdevices variable if the allocation is successful. Since the core sets dev->n_subdevices, remove all the places in the drivers where this variable was getting set. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbott@mev.co.uk> Cc: Frank Mori Hess <fmhess@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7f801c4171
commit
fba1d0faf7
7 changed files with 13 additions and 23 deletions
|
@ -62,12 +62,12 @@ int comedi_alloc_subdevices(struct comedi_device *dev, int num_subdevices)
|
||||||
|
|
||||||
if (num_subdevices < 1)
|
if (num_subdevices < 1)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
dev->n_subdevices = num_subdevices;
|
|
||||||
dev->subdevices =
|
dev->subdevices =
|
||||||
kcalloc(num_subdevices, sizeof(struct comedi_subdevice),
|
kcalloc(num_subdevices, sizeof(struct comedi_subdevice),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!dev->subdevices)
|
if (!dev->subdevices)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
dev->n_subdevices = num_subdevices;
|
||||||
for (i = 0; i < num_subdevices; ++i) {
|
for (i = 0; i < num_subdevices; ++i) {
|
||||||
dev->subdevices[i].device = dev;
|
dev->subdevices[i].device = dev;
|
||||||
dev->subdevices[i].async_dma_dir = DMA_NONE;
|
dev->subdevices[i].async_dma_dir = DMA_NONE;
|
||||||
|
|
|
@ -447,8 +447,7 @@ static int waveform_attach(struct comedi_device *dev,
|
||||||
devpriv->uvolt_amplitude = amplitude;
|
devpriv->uvolt_amplitude = amplitude;
|
||||||
devpriv->usec_period = period;
|
devpriv->usec_period = period;
|
||||||
|
|
||||||
dev->n_subdevices = 2;
|
if (comedi_alloc_subdevices(dev, 2) < 0)
|
||||||
if (comedi_alloc_subdevices(dev, dev->n_subdevices) < 0)
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
s = dev->subdevices + 0;
|
s = dev->subdevices + 0;
|
||||||
|
|
|
@ -1093,9 +1093,7 @@ static int ni_660x_attach(struct comedi_device *dev,
|
||||||
|
|
||||||
printk(KERN_INFO " %s ", dev->board_name);
|
printk(KERN_INFO " %s ", dev->board_name);
|
||||||
|
|
||||||
dev->n_subdevices = 2 + NI_660X_MAX_NUM_COUNTERS;
|
if (comedi_alloc_subdevices(dev, 2 + NI_660X_MAX_NUM_COUNTERS) < 0)
|
||||||
|
|
||||||
if (comedi_alloc_subdevices(dev, dev->n_subdevices) < 0)
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
s = dev->subdevices + 0;
|
s = dev->subdevices + 0;
|
||||||
|
|
|
@ -778,8 +778,7 @@ static int s526_attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
||||||
* Allocate the subdevice structures. alloc_subdevice() is a
|
* Allocate the subdevice structures. alloc_subdevice() is a
|
||||||
* convenient macro defined in comedidev.h.
|
* convenient macro defined in comedidev.h.
|
||||||
*/
|
*/
|
||||||
dev->n_subdevices = 4;
|
if (comedi_alloc_subdevices(dev, 4) < 0)
|
||||||
if (comedi_alloc_subdevices(dev, dev->n_subdevices) < 0)
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
s = dev->subdevices + 0;
|
s = dev->subdevices + 0;
|
||||||
|
|
|
@ -2624,6 +2624,7 @@ static int usbdux_attach_common(struct comedi_device *dev,
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
struct comedi_subdevice *s = NULL;
|
struct comedi_subdevice *s = NULL;
|
||||||
|
int n_subdevs;
|
||||||
|
|
||||||
down(&udev->sem);
|
down(&udev->sem);
|
||||||
/* pointer back to the corresponding comedi device */
|
/* pointer back to the corresponding comedi device */
|
||||||
|
@ -2638,14 +2639,14 @@ static int usbdux_attach_common(struct comedi_device *dev,
|
||||||
/* set number of subdevices */
|
/* set number of subdevices */
|
||||||
if (udev->high_speed) {
|
if (udev->high_speed) {
|
||||||
/* with pwm */
|
/* with pwm */
|
||||||
dev->n_subdevices = 5;
|
n_subdevs = 5;
|
||||||
} else {
|
} else {
|
||||||
/* without pwm */
|
/* without pwm */
|
||||||
dev->n_subdevices = 4;
|
n_subdevs = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* allocate space for the subdevices */
|
/* allocate space for the subdevices */
|
||||||
ret = comedi_alloc_subdevices(dev, dev->n_subdevices);
|
ret = comedi_alloc_subdevices(dev, n_subdevs);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(&udev->interface->dev,
|
dev_err(&udev->interface->dev,
|
||||||
"comedi%d: error alloc space for subdev\n", dev->minor);
|
"comedi%d: error alloc space for subdev\n", dev->minor);
|
||||||
|
|
|
@ -126,11 +126,6 @@
|
||||||
*/
|
*/
|
||||||
#define NUMUSBDUXFAST 16
|
#define NUMUSBDUXFAST 16
|
||||||
|
|
||||||
/*
|
|
||||||
* number of subdevices
|
|
||||||
*/
|
|
||||||
#define N_SUBDEVICES 1
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* analogue in subdevice
|
* analogue in subdevice
|
||||||
*/
|
*/
|
||||||
|
@ -1671,11 +1666,8 @@ static int usbduxfast_attach(struct comedi_device *dev,
|
||||||
|
|
||||||
dev->board_name = BOARDNAME;
|
dev->board_name = BOARDNAME;
|
||||||
|
|
||||||
/* set number of subdevices */
|
|
||||||
dev->n_subdevices = N_SUBDEVICES;
|
|
||||||
|
|
||||||
/* allocate space for the subdevices */
|
/* allocate space for the subdevices */
|
||||||
ret = comedi_alloc_subdevices(dev, N_SUBDEVICES);
|
ret = comedi_alloc_subdevices(dev, 1);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
printk(KERN_ERR "comedi%d: usbduxfast: error alloc space for "
|
printk(KERN_ERR "comedi%d: usbduxfast: error alloc space for "
|
||||||
"subdev\n", dev->minor);
|
"subdev\n", dev->minor);
|
||||||
|
|
|
@ -2642,6 +2642,7 @@ static int usbduxsigma_attach(struct comedi_device *dev,
|
||||||
int index;
|
int index;
|
||||||
int i;
|
int i;
|
||||||
struct usbduxsub *udev;
|
struct usbduxsub *udev;
|
||||||
|
int n_subdevs;
|
||||||
|
|
||||||
int offset;
|
int offset;
|
||||||
|
|
||||||
|
@ -2683,14 +2684,14 @@ static int usbduxsigma_attach(struct comedi_device *dev,
|
||||||
/* set number of subdevices */
|
/* set number of subdevices */
|
||||||
if (udev->high_speed) {
|
if (udev->high_speed) {
|
||||||
/* with pwm */
|
/* with pwm */
|
||||||
dev->n_subdevices = 4;
|
n_subdevs = 4;
|
||||||
} else {
|
} else {
|
||||||
/* without pwm */
|
/* without pwm */
|
||||||
dev->n_subdevices = 3;
|
n_subdevs = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* allocate space for the subdevices */
|
/* allocate space for the subdevices */
|
||||||
ret = comedi_alloc_subdevices(dev, dev->n_subdevices);
|
ret = comedi_alloc_subdevices(dev, n_subdevs);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(&udev->interface->dev,
|
dev_err(&udev->interface->dev,
|
||||||
"comedi%d: no space for subdev\n", dev->minor);
|
"comedi%d: no space for subdev\n", dev->minor);
|
||||||
|
|
Loading…
Add table
Reference in a new issue