All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH 1/1] tst_test.h: Include common headers to fix missing function declaration
@ 2019-04-14 13:03 Petr Vorel
  2019-04-15  2:13 ` =?unknown-8bit?b?6Ziu5q2j5pe6?=
  2019-04-15 11:39 ` Cyril Hrubis
  0 siblings, 2 replies; 6+ messages in thread
From: Petr Vorel @ 2019-04-14 13:03 UTC (permalink / raw)
  To: ltp

This fixes build errors caused by -Werror-implicit-function-declaration
defined for android. Due often missing when using common memory and
string related functions added <string.h>, <strings.h> and <stdlib.h>.

Including headers here seems to be better than handling implicit
function declaration error every now and then.

+ update copyright, use SPDX-License-Identifier.

Suggested-by: Zhengwang Ruan <ruanzw@xiaopeng.com>
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
Hi,

IMHO better than previous patches [1] [2] to handle this.
I decided to include also <strings.h> (there other non-deprecated
functions besides to deprecated bzero) and <stdlib.h> (for malloc).

Kind regards,
Petr

[1] https://patchwork.ozlabs.org/patch/1084064/
[2] https://patchwork.ozlabs.org/patch/1084370/
---
 include/tst_test.h | 18 +++++-------------
 1 file changed, 5 insertions(+), 13 deletions(-)

diff --git a/include/tst_test.h b/include/tst_test.h
index cf2447fe3..69629caff 100644
--- a/include/tst_test.h
+++ b/include/tst_test.h
@@ -1,18 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
 /*
  * Copyright (c) 2015-2016 Cyril Hrubis <chrubis@suse.cz>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * Copyright (c) Linux Test Project, 2016-2019
  */
 
 #ifndef TST_TEST_H__
@@ -24,6 +13,9 @@
 
 #include <unistd.h>
 #include <limits.h>
+#include <string.h>
+#include <strings.h>
+#include <stdlib.h>
 
 #include "tst_common.h"
 #include "tst_res_flags.h"
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [LTP] [PATCH 1/1] tst_test.h: Include common headers to fix missing function declaration
  2019-04-14 13:03 [LTP] [PATCH 1/1] tst_test.h: Include common headers to fix missing function declaration Petr Vorel
@ 2019-04-15  2:13 ` =?unknown-8bit?b?6Ziu5q2j5pe6?=
  2019-04-15 11:39 ` Cyril Hrubis
  1 sibling, 0 replies; 6+ messages in thread
From: =?unknown-8bit?b?6Ziu5q2j5pe6?= @ 2019-04-15  2:13 UTC (permalink / raw)
  To: ltp

Hi Petr,


-------- Original Message --------
From: Petr Vorel
Sent: Sun, 14 Apr 2019 15:03:29 +0200
To: Ltp
Cc: Petr Vorel, Sandeep Patil, Steve Muckle, Zhengwang Ruan, Cyril Hrubis
Subject: [PATCH 1/1] tst_test.h: Include common headers to fix missing 
function declaration
> This fixes build errors caused by -Werror-implicit-function-declaration
> defined for android. Due often missing when using common memory and
> string related functions added <string.h>, <strings.h> and <stdlib.h>.
>
> Including headers here seems to be better than handling implicit
> function declaration error every now and then.
>
> + update copyright, use SPDX-License-Identifier.
>
> Suggested-by: Zhengwang Ruan <ruanzw@xiaopeng.com>
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> ---
> Hi,
>
> IMHO better than previous patches [1] [2] to handle this.
> I decided to include also <strings.h> (there other non-deprecated
> functions besides to deprecated bzero) and <stdlib.h> (for malloc).
>
> Kind regards,
> Petr
>
> [1] https://patchwork.ozlabs.org/patch/1084064/
> [2] https://patchwork.ozlabs.org/patch/1084370/
> ---
>   include/tst_test.h | 18 +++++-------------
>   1 file changed, 5 insertions(+), 13 deletions(-)
>
> diff --git a/include/tst_test.h b/include/tst_test.h
> index cf2447fe3..69629caff 100644
> --- a/include/tst_test.h
> +++ b/include/tst_test.h
> @@ -1,18 +1,7 @@
> +// SPDX-License-Identifier: GPL-2.0-or-later
>   /*
>    * Copyright (c) 2015-2016 Cyril Hrubis <chrubis@suse.cz>
> - *
> - * This program is free software: you can redistribute it and/or modify
> - * it under the terms of the GNU General Public License as published by
> - * the Free Software Foundation, either version 2 of the License, or
> - * (at your option) any later version.
> - *
> - * This program is distributed in the hope that it will be useful,
> - * but WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> - * GNU General Public License for more details.
> - *
> - * You should have received a copy of the GNU General Public License
> - * along with this program. If not, see <http://www.gnu.org/licenses/>.
> + * Copyright (c) Linux Test Project, 2016-2019
>    */
>   
>   #ifndef TST_TEST_H__
> @@ -24,6 +13,9 @@
>   
>   #include <unistd.h>
>   #include <limits.h>
> +#include <string.h>
> +#include <strings.h>
> +#include <stdlib.h>

Looks better now. :-)


Regards,

Zhengwang

>   
>   #include "tst_common.h"
>   #include "tst_res_flags.h"
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linux.it/pipermail/ltp/attachments/20190415/eb6df481/attachment.html>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [LTP] [PATCH 1/1] tst_test.h: Include common headers to fix missing function declaration
  2019-04-14 13:03 [LTP] [PATCH 1/1] tst_test.h: Include common headers to fix missing function declaration Petr Vorel
  2019-04-15  2:13 ` =?unknown-8bit?b?6Ziu5q2j5pe6?=
@ 2019-04-15 11:39 ` Cyril Hrubis
  2019-04-15 12:06   ` Petr Vorel
  1 sibling, 1 reply; 6+ messages in thread
From: Cyril Hrubis @ 2019-04-15 11:39 UTC (permalink / raw)
  To: ltp

Hi!
> [1] https://patchwork.ozlabs.org/patch/1084064/
> [2] https://patchwork.ozlabs.org/patch/1084370/
> ---
>  include/tst_test.h | 18 +++++-------------
>  1 file changed, 5 insertions(+), 13 deletions(-)
> 
> diff --git a/include/tst_test.h b/include/tst_test.h
> index cf2447fe3..69629caff 100644
> --- a/include/tst_test.h
> +++ b/include/tst_test.h
> @@ -1,18 +1,7 @@
> +// SPDX-License-Identifier: GPL-2.0-or-later
>  /*
>   * Copyright (c) 2015-2016 Cyril Hrubis <chrubis@suse.cz>
> - *
> - * This program is free software: you can redistribute it and/or modify
> - * it under the terms of the GNU General Public License as published by
> - * the Free Software Foundation, either version 2 of the License, or
> - * (at your option) any later version.
> - *
> - * This program is distributed in the hope that it will be useful,
> - * but WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> - * GNU General Public License for more details.
> - *
> - * You should have received a copy of the GNU General Public License
> - * along with this program. If not, see <http://www.gnu.org/licenses/>.
> + * Copyright (c) Linux Test Project, 2016-2019
>   */
>  
>  #ifndef TST_TEST_H__
> @@ -24,6 +13,9 @@
>  
>  #include <unistd.h>
>  #include <limits.h>
> +#include <string.h>
> +#include <strings.h>
> +#include <stdlib.h>

Can we please get rid of the deprecated functions from strings.h instead
of simply including it?

>  #include "tst_common.h"
>  #include "tst_res_flags.h"
> -- 
> 2.20.1
> 

-- 
Cyril Hrubis
chrubis@suse.cz

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [LTP] [PATCH 1/1] tst_test.h: Include common headers to fix missing function declaration
  2019-04-15 11:39 ` Cyril Hrubis
@ 2019-04-15 12:06   ` Petr Vorel
  2019-04-15 12:40     ` Cyril Hrubis
  0 siblings, 1 reply; 6+ messages in thread
From: Petr Vorel @ 2019-04-15 12:06 UTC (permalink / raw)
  To: ltp

Hi Cyril,

> >  #include <unistd.h>
> >  #include <limits.h>
> > +#include <string.h>
> > +#include <strings.h>
> > +#include <stdlib.h>

> Can we please get rid of the deprecated functions from strings.h instead
> of simply including it?
Sure, I'll do it sooner or later :). I guess you're against <stdlib.h> as well
(I found only one file needing it so far), so I'll include just <string.h>
(which usage is massive), ok?

Kind regards,
Petr

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [LTP] [PATCH 1/1] tst_test.h: Include common headers to fix missing function declaration
  2019-04-15 12:06   ` Petr Vorel
@ 2019-04-15 12:40     ` Cyril Hrubis
  2019-04-15 13:51       ` Petr Vorel
  0 siblings, 1 reply; 6+ messages in thread
From: Cyril Hrubis @ 2019-04-15 12:40 UTC (permalink / raw)
  To: ltp

Hi!
> > Can we please get rid of the deprecated functions from strings.h instead
> > of simply including it?
> Sure, I'll do it sooner or later :). I guess you're against <stdlib.h> as well
> (I found only one file needing it so far), so I'll include just <string.h>
> (which usage is massive), ok?

Agreed.

-- 
Cyril Hrubis
chrubis@suse.cz

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [LTP] [PATCH 1/1] tst_test.h: Include common headers to fix missing function declaration
  2019-04-15 12:40     ` Cyril Hrubis
@ 2019-04-15 13:51       ` Petr Vorel
  0 siblings, 0 replies; 6+ messages in thread
From: Petr Vorel @ 2019-04-15 13:51 UTC (permalink / raw)
  To: ltp

Hi,

> > > Can we please get rid of the deprecated functions from strings.h instead
> > > of simply including it?
> > Sure, I'll do it sooner or later :). I guess you're against <stdlib.h> as well
> > (I found only one file needing it so far), so I'll include just <string.h>
> > (which usage is massive), ok?

> Agreed.
Thanks for your review, merged!

Kind regards,
Petr

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-04-15 13:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-14 13:03 [LTP] [PATCH 1/1] tst_test.h: Include common headers to fix missing function declaration Petr Vorel
2019-04-15  2:13 ` =?unknown-8bit?b?6Ziu5q2j5pe6?=
2019-04-15 11:39 ` Cyril Hrubis
2019-04-15 12:06   ` Petr Vorel
2019-04-15 12:40     ` Cyril Hrubis
2019-04-15 13:51       ` Petr Vorel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.