Skip to content
Snippets Groups Projects
Commit 9b8d72cc authored by Alessandro Rubini's avatar Alessandro Rubini
Browse files

chardev.c: free pending user_block on release


Signed-off-by: default avatarAlessandro Rubini <rubini@gnudd.com>
Acked-by: default avatarFederico Vaga <federico.vaga@gmail.com>
parent 1feaf068
Branches
Tags
No related merge requests found
......@@ -491,8 +491,14 @@ static unsigned int zio_generic_poll(struct file *f,
static int zio_generic_release(struct inode *inode, struct file *f)
{
struct zio_f_priv *priv = f->private_data;
struct zio_channel *chan = priv->chan;
struct zio_block *block = chan->user_block;
zio_channel_put(priv->chan);
if (chan->user_block)
chan->bi->b_op->free_block(chan->bi, block);
chan->user_block = NULL;
zio_channel_put(chan);
/* priv is allocated by zio_f_open, must be freed */
kfree(priv);
return 0;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment