[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20080922.212834.184909406.davem@davemloft.net>
Date: Mon, 22 Sep 2008 21:28:34 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: shemminger@...tta.com
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH] net: network device name ifalias support
From: Stephen Hemminger <shemminger@...tta.com>
Date: Mon, 22 Sep 2008 20:47:18 -0700
> On Mon, 22 Sep 2008 19:44:23 -0700 (PDT)
> David Miller <davem@...emloft.net> wrote:
>
> > It might be cleaner to use kstrdup() and free the old pointer, if
> > any, here.
> >
> > char *new = kstrdup(alias, GFP_KERNEL);
> > if (!new)
> > return -ENOMEM;
> > kfree(dev->ifalias);
> > dev->ifalias = new;
> > return len;
> >
> > That way all of this "len+1" stuff goes away.
>
> Won't work because input string is not necessarily null-terminated.
> In the sysfs case we want there is a trailing newline, and this
> way avoids copying once there and then copying again.
Ok, fair enough. I've applied your original patch to net-next-2.6,
thanks!
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists