[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20080429054045.09d8a911.akpm@linux-foundation.org>
Date: Tue, 29 Apr 2008 05:40:45 -0700
From: Andrew Morton <akpm@...ux-foundation.org>
To: Ingo Molnar <mingo@...e.hu>
Cc: Jesse Barnes <jesse.barnes@...el.com>,
Gabriel C <nix.or.die@...glemail.com>,
Yinghai Lu <yhlu.kernel@...il.com>,
"H. Peter Anvin" <hpa@...or.com>,
LKML <linux-kernel@...r.kernel.org>,
Mika Fischer <mika.fischer@...pnet.de>, balajirrao@...il.com,
Andi Kleen <andi@...stfloor.org>,
Thomas Gleixner <tglx@...utronix.de>
Subject: Re: [PATCH] x86_32: trim memory by updating e820 v3
On Tue, 29 Apr 2008 12:37:41 +0200 Ingo Molnar <mingo@...e.hu> wrote:
> +static int pci_create_attr(struct pci_dev *pdev, int num, int write_combine)
> +{
> + /* allocate attribute structure, piggyback attribute name */
> + int name_len = write_combine ? 13 : 10;
> + struct bin_attribute *res_attr;
> + int retval;
> +
> + res_attr = kzalloc(sizeof(*res_attr) + name_len, GFP_ATOMIC);
That (retained from current code) GFP_ATOMIC cannot be necessary.
> + if (res_attr) {
> + char *res_attr_name = (char *)(res_attr + 1);
> +
> + if (write_combine) {
> + pdev->res_attr_wc[num] = res_attr;
> + sprintf(res_attr_name, "resource%d_wc", num);
> + res_attr->mmap = pci_mmap_resource_wc;
> + } else {
> + pdev->res_attr[num] = res_attr;
> + sprintf(res_attr_name, "resource%d", num);
> + res_attr->mmap = pci_mmap_resource_uc;
> + }
> + res_attr->attr.name = res_attr_name;
> + res_attr->attr.mode = S_IRUSR | S_IWUSR;
> + res_attr->size = pci_resource_len(pdev, num);
> + res_attr->private = &pdev->resource[num];
> + retval = sysfs_create_bin_file(&pdev->dev.kobj, res_attr);
Because of this.
> + } else
> + retval = -ENOMEM;
> +
> + return retval;
> +}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists