[CRIU] [PATCH] tty: prefer zalloc to malloc for inverted_path allocation
Cyrill Gorcunov
gorcunov at gmail.com
Thu Jun 23 04:21:00 PDT 2016
On Thu, Jun 23, 2016 at 02:15:24PM +0300, Dmitry Safonov wrote:
> On 06/23/2016 02:12 PM, Cyrill Gorcunov wrote:
> > On Thu, Jun 23, 2016 at 02:00:12PM +0300, Dmitry Safonov wrote:
> > > Otherwise, we copy original name to slash and after it there may stay
> > > some junk, which strcat will use for concatenation:
> > > (00.024843) 26: Error (files-reg.c:1528): Can't open file dev/pts/g:��ptmx on restore: No such file or directory
> > > (00.024846) 26: Error (files-reg.c:1470): Can't open file dev/pts/g:��ptmx: No such file or directory
> > > (00.024849) 26: Error (tty.c:545): tty: Can't open dev/pts/g:��ptmx: No such file or directory
> > >
> > > Cc: Cyrill Gorcunov <gorcunov at openvz.org>
> > > Signed-off-by: Dmitry Safonov <dsafonov at virtuozzo.com>
> >
> > That's big hammer, won't the below oneliner fix it?
>
> Well, I thought about it -- I don't mind either version.
> I think memsetting 32 bytes with zero in allocator or computing
> explicitely here address + setting it to zero is quite the
> same performance impact. So I guess, less code is better.
> But, anyway, I don't mind against your version.
zero allocations make sense when you know the data remains
zero initially (or you would setup it to zero manually),
but in our case we're allocating data and fill it immediately
with a path, so that it get written twice. The memory chunk
is small so there won't be performcance penalty seen.
Test it please ;) I didn't run real test on my version
but I guess you've the case under your hand.
More information about the CRIU
mailing list