Re: [PATCH 3/8] hw/ppc/virtex_ml507: Drop use of ppcuic_init()

2021-01-11 Thread BALATON Zoltan
On Sat, 12 Dec 2020, Peter Maydell wrote: Switch the virtex_ml507 board to directly creating and configuring the UIC, rather than doing it via the old ppcuic_init() helper function. This fixes a trivial Coverity-detected memory leak where we were leaking the array of IRQs returned by ppcuic_init

Re: [PATCH 3/8] hw/ppc/virtex_ml507: Drop use of ppcuic_init()

2020-12-14 Thread David Gibson
On Sat, Dec 12, 2020 at 12:15:32AM +, Peter Maydell wrote: > Switch the virtex_ml507 board to directly creating and > configuring the UIC, rather than doing it via the old > ppcuic_init() helper function. > > This fixes a trivial Coverity-detected memory leak where > we were leaking the array

Re: [PATCH 3/8] hw/ppc/virtex_ml507: Drop use of ppcuic_init()

2020-12-13 Thread Edgar E. Iglesias
On Sat, Dec 12, 2020 at 12:15:32AM +, Peter Maydell wrote: > Switch the virtex_ml507 board to directly creating and > configuring the UIC, rather than doing it via the old > ppcuic_init() helper function. > > This fixes a trivial Coverity-detected memory leak where > we were leaking the array

[PATCH 3/8] hw/ppc/virtex_ml507: Drop use of ppcuic_init()

2020-12-11 Thread Peter Maydell
Switch the virtex_ml507 board to directly creating and configuring the UIC, rather than doing it via the old ppcuic_init() helper function. This fixes a trivial Coverity-detected memory leak where we were leaking the array of IRQs returned by ppcuic_init(). Fixes: Coverity CID 1421992 Signed-off-