[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200125.081107.914737890991760251.davem@davemloft.net>
Date: Sat, 25 Jan 2020 08:11:07 +0100 (CET)
From: David Miller <davem@...emloft.net>
To: wenwen@...uga.edu
Cc: 3chas3@...il.com, linux-atm-general@...ts.sourceforge.net,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] firestream: fix memory leaks
From: Wenwen Wang <wenwen@...uga.edu>
Date: Sat, 25 Jan 2020 05:11:34 +0000
> @@ -922,6 +923,7 @@ static int fs_open(struct atm_vcc *atm_vcc)
> if (((DO_DIRECTION(rxtp) && dev->atm_vccs[vcc->channo])) ||
> ( DO_DIRECTION(txtp) && test_bit (vcc->channo, dev->tx_inuse))) {
> printk ("Channel is in use for FS155.\n");
> + kfree(vcc);
> return -EBUSY;
> }
> }
> --
There is another case just below this line:
tc, sizeof (struct fs_transmit_config));
if (!tc) {
fs_dprintk (FS_DEBUG_OPEN, "fs: can't alloc transmit_config.\n");
return -ENOMEM;
}
Please audit the entire function and make sure your patch fixes all of these
missing vcc free cases.
Thank you.
Powered by blists - more mailing lists