[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20110509172613.166B.A69D9226@jp.fujitsu.com>
Date: Mon, 9 May 2011 17:24:30 +0900 (JST)
From: KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>
To: Stephen Wilson <wilsons@...rt.ca>
Cc: kosaki.motohiro@...fujitsu.com,
Andrew Morton <akpm@...ux-foundation.org>,
Alexander Viro <viro@...iv.linux.org.uk>,
Hugh Dickins <hughd@...gle.com>,
David Rientjes <rientjes@...gle.com>, linux-mm@...ck.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 8/8] proc: allocate storage for numa_maps statistics once
> static int numa_maps_open(struct inode *inode, struct file *file)
> {
> - return do_maps_open(inode, file, &proc_pid_numa_maps_op);
> + struct numa_maps_private *priv;
> + int ret = -ENOMEM;
> + priv = kzalloc(sizeof(*priv), GFP_KERNEL);
> + if (priv) {
> + priv->proc_maps.pid = proc_pid(inode);
> + ret = seq_open(file, &proc_pid_numa_maps_op);
> + if (!ret) {
> + struct seq_file *m = file->private_data;
> + m->private = priv;
> + } else {
> + kfree(priv);
> + }
> + }
> + return ret;
> }
Looks good to me.
Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>
--
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