Re: [Spice-devel] [PATCH v2 06/24] Replace inefficient C-style initialization with C++-style

2018-02-22 Thread Christophe de Dinechin

> On Feb 23, 2018, at 8:20 AM, Frediano Ziglio  wrote:
> 
>>> 
>>> From: Christophe de Dinechin 
>>> 
>>> Signed-off-by: Christophe de Dinechin 
>>> ---
>>> src/spice-streaming-agent.cpp | 4 +---
>>> 1 file changed, 1 insertion(+), 3 deletions(-)
>>> 
>>> diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
>>> index 8508f9b..b743204 100644
>>> --- a/src/spice-streaming-agent.cpp
>>> +++ b/src/spice-streaming-agent.cpp
>>> @@ -290,9 +290,7 @@ static void handle_interrupt(int intr)
>>> 
>>> static void register_interrupts(void)
>>> {
>>> -struct sigaction sa;
>>> -
>>> -memset(, 0, sizeof(sa));
>>> +struct sigaction sa = { };
>>> sa.sa_handler = handle_interrupt;
>>> if ((sigaction(SIGINT, , NULL) != 0) &&
>>> (sigaction(SIGTERM, , NULL) != 0)) {
>> 
>> As discussed previously on the ML efficiency related patches should
>> be supported by some measurement which are not in the commit message.
>> If this is just a style change instead please state so in the commit
>> message.
>> 
> 
> Why not a:
> 
> "Replace memset style initialization with language initialization
> 
> Language initialization is more short and less error prone.”

I see, you interpreted “more efficient” as run-time efficiency. Now I 
understand your comment.

I was really comparing the code length and error checking. Will change the 
wording.

> 
> ?
> 
> Frediano

___
Spice-devel mailing list
Spice-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/spice-devel


Re: [Spice-devel] [PATCH v2 06/24] Replace inefficient C-style initialization with C++-style

2018-02-22 Thread Frediano Ziglio
> > 
> > From: Christophe de Dinechin 
> > 
> > Signed-off-by: Christophe de Dinechin 
> > ---
> >  src/spice-streaming-agent.cpp | 4 +---
> >  1 file changed, 1 insertion(+), 3 deletions(-)
> > 
> > diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
> > index 8508f9b..b743204 100644
> > --- a/src/spice-streaming-agent.cpp
> > +++ b/src/spice-streaming-agent.cpp
> > @@ -290,9 +290,7 @@ static void handle_interrupt(int intr)
> >  
> >  static void register_interrupts(void)
> >  {
> > -struct sigaction sa;
> > -
> > -memset(, 0, sizeof(sa));
> > +struct sigaction sa = { };
> >  sa.sa_handler = handle_interrupt;
> >  if ((sigaction(SIGINT, , NULL) != 0) &&
> >  (sigaction(SIGTERM, , NULL) != 0)) {
> 
> As discussed previously on the ML efficiency related patches should
> be supported by some measurement which are not in the commit message.
> If this is just a style change instead please state so in the commit
> message.
> 

Why not a:

"Replace memset style initialization with language initialization

Language initialization is more short and less error prone."

?

Frediano
___
Spice-devel mailing list
Spice-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/spice-devel


Re: [Spice-devel] [PATCH v2 06/24] Replace inefficient C-style initialization with C++-style

2018-02-22 Thread Frediano Ziglio
> 
> From: Christophe de Dinechin 
> 
> Signed-off-by: Christophe de Dinechin 
> ---
>  src/spice-streaming-agent.cpp | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
> index 8508f9b..b743204 100644
> --- a/src/spice-streaming-agent.cpp
> +++ b/src/spice-streaming-agent.cpp
> @@ -290,9 +290,7 @@ static void handle_interrupt(int intr)
>  
>  static void register_interrupts(void)
>  {
> -struct sigaction sa;
> -
> -memset(, 0, sizeof(sa));
> +struct sigaction sa = { };
>  sa.sa_handler = handle_interrupt;
>  if ((sigaction(SIGINT, , NULL) != 0) &&
>  (sigaction(SIGTERM, , NULL) != 0)) {

As discussed previously on the ML efficiency related patches should
be supported by some measurement which are not in the commit message.
If this is just a style change instead please state so in the commit
message.

Frediano
___
Spice-devel mailing list
Spice-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/spice-devel