Skip to content

Commit

Permalink
staging: most: remove stacked_mbo
Browse files Browse the repository at this point in the history
This patch makes use of kfifo_peek and kfifo_skip, which renders the
variable stacked_mbo useless. It is therefore removed.

Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Christian Gromm authored and Greg Kroah-Hartman committed Feb 8, 2016
1 parent b3c9f3c commit f45b0fb
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions drivers/staging/most/aim-cdev/cdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ struct aim_channel {
unsigned int channel_id;
dev_t devno;
size_t mbo_offs;
struct mbo *stacked_mbo;
DECLARE_KFIFO_PTR(fifo, typeof(struct mbo *));
int access_ref;
struct list_head list;
Expand Down Expand Up @@ -87,9 +86,6 @@ static void stop_channel(struct aim_channel *c)

while (kfifo_out((struct kfifo *)&c->fifo, &mbo, 1))
most_put_mbo(mbo);
if (c->stacked_mbo)
most_put_mbo(c->stacked_mbo);
c->stacked_mbo = NULL;
most_stop_channel(c->iface, c->channel_id, &cdev_aim);
}

Expand Down Expand Up @@ -143,6 +139,7 @@ static int aim_open(struct inode *inode, struct file *filp)
return -EBUSY;
}

c->mbo_offs = 0;
ret = most_start_channel(c->iface, c->channel_id, &cdev_aim);
if (!ret)
c->access_ref = 1;
Expand Down Expand Up @@ -249,11 +246,7 @@ aim_read(struct file *filp, char __user *buf, size_t count, loff_t *offset)
struct aim_channel *c = filp->private_data;

mutex_lock(&c->io_mutex);
if (c->stacked_mbo) {
mbo = c->stacked_mbo;
goto start_copy;
}
while ((!kfifo_out(&c->fifo, &mbo, 1)) && (c->dev)) {
while (c->dev && !kfifo_peek(&c->fifo, &mbo)) {
mutex_unlock(&c->io_mutex);
if (filp->f_flags & O_NONBLOCK)
return -EAGAIN;
Expand All @@ -263,9 +256,7 @@ aim_read(struct file *filp, char __user *buf, size_t count, loff_t *offset)
return -ERESTARTSYS;
mutex_lock(&c->io_mutex);
}
c->stacked_mbo = mbo;

start_copy:
/* make sure we don't submit to gone devices */
if (unlikely(!c->dev)) {
mutex_unlock(&c->io_mutex);
Expand All @@ -284,9 +275,9 @@ aim_read(struct file *filp, char __user *buf, size_t count, loff_t *offset)

c->mbo_offs += copied;
if (c->mbo_offs >= mbo->processed_length) {
kfifo_skip(&c->fifo);
most_put_mbo(mbo);
c->mbo_offs = 0;
c->stacked_mbo = NULL;
}
mutex_unlock(&c->io_mutex);
return copied;
Expand Down Expand Up @@ -466,7 +457,6 @@ static int aim_probe(struct most_interface *iface, int channel_id,
c->iface = iface;
c->cfg = cfg;
c->channel_id = channel_id;
c->mbo_offs = 0;
c->access_ref = 0;
spin_lock_init(&c->unlink);
INIT_KFIFO(c->fifo);
Expand Down

0 comments on commit f45b0fb

Please sign in to comment.