[PATCH 1/3] PCI: hv: use the correct buffer size in new_pcichild_device()

KY Srinivasan kys at microsoft.com
Mon Nov 14 22:58:55 UTC 2016



> -----Original Message-----
> From: Dexuan Cui
> Sent: Wednesday, November 9, 2016 11:18 PM
> To: Bjorn Helgaas <bhelgaas at google.com>; linux-pci at vger.kernel.org;
> devel at linuxdriverproject.org
> Cc: gregkh at linuxfoundation.org; KY Srinivasan <kys at microsoft.com>;
> Haiyang Zhang <haiyangz at microsoft.com>; Stephen Hemminger
> <sthemmin at microsoft.com>; Jake Oshins <jakeo at microsoft.com>; Hadden
> Hoppert <haddenh at microsoft.com>; Vitaly Kuznetsov
> <vkuznets at redhat.com>; jasowang at redhat.com; apw at canonical.com;
> olaf at aepfle.de; linux-kernel at vger.kernel.org
> Subject: [PATCH 1/3] PCI: hv: use the correct buffer size in
> new_pcichild_device()
> 
> We don't really need such a big on-stack buffer.
> vmbus_sendpacket() here only uses sizeof(struct pci_child_message).
> 
> Signed-off-by: Dexuan Cui <decui at microsoft.com>
> CC: Jake Oshins <jakeo at microsoft.com>
> Cc: KY Srinivasan <kys at microsoft.com>
> CC: Haiyang Zhang <haiyangz at microsoft.com>
> CC: Vitaly Kuznetsov <vkuznets at redhat.com>

Thanks Dexuan.

Acked-by: K. Y. Srinivasan <kys at microsoft.com>

> ---
>  drivers/pci/host/pci-hyperv.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/pci/host/pci-hyperv.c b/drivers/pci/host/pci-hyperv.c
> index 763ff87..93ed64a 100644
> --- a/drivers/pci/host/pci-hyperv.c
> +++ b/drivers/pci/host/pci-hyperv.c
> @@ -1271,9 +1271,9 @@ static struct hv_pci_dev
> *new_pcichild_device(struct hv_pcibus_device *hbus,
>  	struct hv_pci_dev *hpdev;
>  	struct pci_child_message *res_req;
>  	struct q_res_req_compl comp_pkt;
> -	union {
> -	struct pci_packet init_packet;
> -		u8 buffer[0x100];
> +	struct {
> +		struct pci_packet init_packet;
> +		u8 buffer[sizeof(struct pci_child_message)];
>  	} pkt;
>  	unsigned long flags;
>  	int ret;
> --
> 2.7.4



More information about the devel mailing list