Re: [PATCH v2 06/10] sysfs: treewide: constify attribute callback of bin_attribute::mmap()

2024-11-04 Thread Andrew Donnellan
t the tree at once. > > Signed-off-by: Thomas Weißschuh Acked-by: Andrew Donnellan # ocxl -- Andrew DonnellanOzLabs, ADL Canberra a...@linux.ibm.com IBM Australia Limited

Re: [PATCH v2 2/4] eventfd: simplify eventfd_signal()

2023-11-23 Thread Andrew Donnellan
n > keeping that additional argument. > > Signed-off-by: Christian Brauner Acked-by: Andrew Donnellan # ocxl -- Andrew DonnellanOzLabs, ADL Canberra a...@linux.ibm.com IBM Australia Limited

Re: [PATCH 01/13] powerpc/powernv: remove get_cxl_module

2021-01-22 Thread Andrew Donnellan
uot;). Thanks for picking this up. Reviewed-by: Andrew Donnellan -- Andrew Donnellan OzLabs, ADL Canberra a...@linux.ibm.com IBM Australia Limited ___ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.

Re: [PATCH v2 06/22] docs: mark orphan documents as such

2019-06-04 Thread Andrew Donnellan
hem, in order to silent this warning. Signed-off-by: Mauro Carvalho Chehab ocxl: Acked-by: Andrew Donnellan We should find somewhere to put it... --- Documentation/accelerators/ocxl.rst | 2 ++ Documentation/arm/stm32/overview.rst| 2 ++ Documentation/a

Re: [PATCH v3 2/3] drm: add fallback default device detection

2017-09-11 Thread Andrew Donnellan
lcome. Tested on our iMac G5, the fallback handler doesn't fire (which should be correct). Tested-by: Andrew Donnellan +static void vga_default_enable_hook(struct pci_dev *pdev) +{ + if (!vga_default_active) + return; + + if (pci_defaul

[PATCH RESEND] drm/ast: free correct pointer in astfb_create() error paths

2016-11-14 Thread Andrew Donnellan
In the err_free_vram and err_release_fbi error paths in astfb_create(), we attempt to free afbdev->sysram. The only jumps to these error paths occur before we assign afbdev->sysram = sysram. Free sysram instead. Signed-off-by: Andrew Donnellan --- Found by Coverity Scan. Compile teste

[PATCH 1/4] MAINTAINERS: Add "B:" for URI where to file bugs

2016-10-24 Thread Andrew Donnellan
rpc... For the whole series: Reviewed-by: Andrew Donnellan -- Andrew Donnellan OzLabs, ADL Canberra andrew.donnellan at au1.ibm.com IBM Australia Limited

[PATCH RESEND] drm/ast: free correct pointer in astfb_create() error paths

2016-09-20 Thread Andrew Donnellan
On 20/09/16 11:56, Andrew Donnellan wrote: > In the err_free_vram and err_release_fbi error paths in astfb_create(), we > attempt to free afbdev->sysram. The only jumps to these error paths occur > before we assign afbdev->sysram = sysram. Free sysram instead. > > Signed-off

[PATCH RESEND] drm/ast: free correct pointer in astfb_create() error paths

2016-09-20 Thread Andrew Donnellan
In the err_free_vram and err_release_fbi error paths in astfb_create(), we attempt to free afbdev->sysram. The only jumps to these error paths occur before we assign afbdev->sysram = sysram. Free sysram instead. Signed-off-by: Andrew Donnellan --- Found by Coverity Scan. Compile teste

[PATCH] drm/ast: free correct pointer in astfb_create() error paths

2016-09-19 Thread Andrew Donnellan
In the err_free_vram and err_release_fbi error paths in astfb_create(), we attempt to free afbdev->sysram. The only jumps to these error paths occur before we assign afbdev->sysram = sysram. Free sysram instead. Signed-off-by: Andrew Donnellan --- Found by Coverity Scan. Compile teste