linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] fix tlock.c to use sigaction() over deprecated signal(). Fixes sync issues when client is loaded. (Particularly test12)
@ 2014-02-24 19:05 jonathan.dascenzo
  2014-03-11 19:17 ` Steve Dickson
  0 siblings, 1 reply; 2+ messages in thread
From: jonathan.dascenzo @ 2014-02-24 19:05 UTC (permalink / raw)
  To: steved; +Cc: linux-nfs, Jonathan Dascenzo

From: Jonathan Dascenzo <Jonathan.Dascenzo@netapp.com>

---
 lock/tlock.c |   30 ++++++++++++++++++++++--------
 1 file changed, 22 insertions(+), 8 deletions(-)

diff --git a/lock/tlock.c b/lock/tlock.c
index 8a7d0cc..39a6ad9 100644
--- a/lock/tlock.c
+++ b/lock/tlock.c
@@ -272,20 +272,24 @@ testexit(nok)
 	int nok;
 {
 
+	struct sigaction act;
 	close_testfile(DO_UNLINK);
 	if (nok) {
 		testreport(1);
 	}
 	if (who == PARENT) {
-		signal(SIGCLD, SIG_DFL);
+		act.sa_handler = SIG_DFL;
+		sigaction(SIGCLD, &act, NULL);
 		if (nok) {
-			signal(SIGINT, SIG_IGN);
+			act.sa_handler = SIG_IGN;
+			sigaction(SIGINT, &act, NULL);
 			kill(childpid, SIGINT);
 		}
 		wait((int *)0);
 	} else {
 		if (nok) {
-			signal(SIGINT, SIG_IGN);
+			act.sa_handler = SIG_IGN;
+			sigaction(SIGINT, &act, NULL);
 			kill(parentpid, SIGINT);
 		}
 	}
@@ -1450,7 +1454,9 @@ test12()
 			close_testfile(DO_UNLINK);
 		} else {
 			/* subchild */
-			signal(SIGINT, SIG_DFL);
+			struct sigaction act;
+			act.sa_handler = SIG_DFL;
+			sigaction(SIGINT, &act, NULL);
 			test(12, 0, F_TLOCK, (off_t)0, (off_t)0, PASS, FATAL);
 			for (;;)
 				sleep(1);
@@ -1667,13 +1673,19 @@ main(argc, argv)
 	/*
 	 * Fork child...
 	 */
+	struct sigaction act; 
+	act.sa_handler = SIG_DFL;
 	if ((childpid = fork()) == 0) {
 		who = CHILD;
-		signal(SIGINT, parentsig);
+		sigaction(SIGINT, &act, NULL);
+		act.sa_handler = parentsig;
+		sigaction(SIGINT, &act, NULL);
 	} else {
 		who = PARENT;
-		signal(SIGINT, childsig);
-		signal(SIGCLD, childdied);
+		act.sa_handler = childsig;
+		sigaction(SIGINT, &act, NULL);
+		act.sa_handler = childdied;
+		sigaction(SIGCLD, &act, NULL);
 	}
 
 	/*
@@ -1692,7 +1704,9 @@ main(argc, argv)
 	if (who == CHILD) {
 		childwait();
 	} else {
-		signal(SIGCLD, SIG_DFL);
+		struct sigaction;
+		act.sa_handler = SIG_DFL;
+		sigaction(SIGCLD, &act, NULL);
 		childfree(0);
 	}
 	testexit(0);
-- 
1.7.9.5


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

* Re: [PATCH 1/1] fix tlock.c to use sigaction() over deprecated signal(). Fixes sync issues when client is loaded. (Particularly test12)
  2014-02-24 19:05 [PATCH 1/1] fix tlock.c to use sigaction() over deprecated signal(). Fixes sync issues when client is loaded. (Particularly test12) jonathan.dascenzo
@ 2014-03-11 19:17 ` Steve Dickson
  0 siblings, 0 replies; 2+ messages in thread
From: Steve Dickson @ 2014-03-11 19:17 UTC (permalink / raw)
  To: jonathan.dascenzo; +Cc: linux-nfs



On 02/24/2014 02:05 PM, jonathan.dascenzo@netapp.com wrote:
> From: Jonathan Dascenzo <Jonathan.Dascenzo@netapp.com>
> 
> ---
>  lock/tlock.c |   30 ++++++++++++++++++++++--------
>  1 file changed, 22 insertions(+), 8 deletions(-)
Committed....

steved.

> 
> diff --git a/lock/tlock.c b/lock/tlock.c
> index 8a7d0cc..39a6ad9 100644
> --- a/lock/tlock.c
> +++ b/lock/tlock.c
> @@ -272,20 +272,24 @@ testexit(nok)
>  	int nok;
>  {
>  
> +	struct sigaction act;
>  	close_testfile(DO_UNLINK);
>  	if (nok) {
>  		testreport(1);
>  	}
>  	if (who == PARENT) {
> -		signal(SIGCLD, SIG_DFL);
> +		act.sa_handler = SIG_DFL;
> +		sigaction(SIGCLD, &act, NULL);
>  		if (nok) {
> -			signal(SIGINT, SIG_IGN);
> +			act.sa_handler = SIG_IGN;
> +			sigaction(SIGINT, &act, NULL);
>  			kill(childpid, SIGINT);
>  		}
>  		wait((int *)0);
>  	} else {
>  		if (nok) {
> -			signal(SIGINT, SIG_IGN);
> +			act.sa_handler = SIG_IGN;
> +			sigaction(SIGINT, &act, NULL);
>  			kill(parentpid, SIGINT);
>  		}
>  	}
> @@ -1450,7 +1454,9 @@ test12()
>  			close_testfile(DO_UNLINK);
>  		} else {
>  			/* subchild */
> -			signal(SIGINT, SIG_DFL);
> +			struct sigaction act;
> +			act.sa_handler = SIG_DFL;
> +			sigaction(SIGINT, &act, NULL);
>  			test(12, 0, F_TLOCK, (off_t)0, (off_t)0, PASS, FATAL);
>  			for (;;)
>  				sleep(1);
> @@ -1667,13 +1673,19 @@ main(argc, argv)
>  	/*
>  	 * Fork child...
>  	 */
> +	struct sigaction act; 
> +	act.sa_handler = SIG_DFL;
>  	if ((childpid = fork()) == 0) {
>  		who = CHILD;
> -		signal(SIGINT, parentsig);
> +		sigaction(SIGINT, &act, NULL);
> +		act.sa_handler = parentsig;
> +		sigaction(SIGINT, &act, NULL);
>  	} else {
>  		who = PARENT;
> -		signal(SIGINT, childsig);
> -		signal(SIGCLD, childdied);
> +		act.sa_handler = childsig;
> +		sigaction(SIGINT, &act, NULL);
> +		act.sa_handler = childdied;
> +		sigaction(SIGCLD, &act, NULL);
>  	}
>  
>  	/*
> @@ -1692,7 +1704,9 @@ main(argc, argv)
>  	if (who == CHILD) {
>  		childwait();
>  	} else {
> -		signal(SIGCLD, SIG_DFL);
> +		struct sigaction;
> +		act.sa_handler = SIG_DFL;
> +		sigaction(SIGCLD, &act, NULL);
>  		childfree(0);
>  	}
>  	testexit(0);
> 

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

end of thread, other threads:[~2014-03-11 19:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-24 19:05 [PATCH 1/1] fix tlock.c to use sigaction() over deprecated signal(). Fixes sync issues when client is loaded. (Particularly test12) jonathan.dascenzo
2014-03-11 19:17 ` Steve Dickson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).