[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] xenstored: Remove setjmp.h
- To: <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Jason Andryuk <jason.andryuk@xxxxxxx>
- Date: Fri, 18 Apr 2025 16:59:33 -0400
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none (0)
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=RAdewbTf97jUH+iFwOrNcv+kf97lMEvKgqHa8aLDe4g=; b=O447z78HJbN8FK7tRovHKvfhmWfSSGkjy+SIjkgyS9U6rccYvi4IOPvCosjxA8ADLW7VzPFg5btNO9eGcXbmGiSqIMpR3xoo97gzMyMlMFMjiuhJwJjRD4IZ5T0MtPf15WOqt4t7X3tItpie/Il/zsVonE5pjqfViY7iGr59HYae8qKaAo8BfXahvaZ0TTSY8JWyj4KhZFaP5TLv9zoQ1tUcXPTfhoUyen8s7FInS0KgsSAun4I9D5m/sBwDFYohuFPU1jfj1cAAFpkt+b3zJusbsVn/i/zsNxU/1Peti/UEbk0Minn2FWGu2XILRSlEdVR4LJw1xzTa6IVThzS1Dw==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=BiZIwML8gBoXJBYyKPw57uHxeEcrwr8uo+3qvZt7bVVLekOxgOdr6ofhBKuxH6uiPqzZnNumJlICU9CIOnzRrv1DhoUV/h7D7gTtETDCYNXWJlxoWuwOYWHiHtYSyk5NoZdjbeKCK61dsUamxzoyyMgXjLd2Jzdo4XgRIKnjXpfiDjxUvYmNrZ8dhYThxovfC95qANbD5VGmTs9GeXQ4zh0Nw9zzKZLbHLpYkQEW6Z4E+hqbiJbmT+Zafx0yKZQSq2eWt1rsvYoQIJOGApmrkYOG/6ztRestSG20NVQjl2+m9gtv4tLXAsYOr9Syz/DhHMVvNzhbpKaHIcDQaEvZ+A==
- Cc: Jason Andryuk <jason.andryuk@xxxxxxx>, Juergen Gross <jgross@xxxxxxxx>, Julien Grall <julien@xxxxxxx>, Anthony PERARD <anthony.perard@xxxxxxxxxx>
- Delivery-date: Fri, 18 Apr 2025 20:59:57 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
Use of setjmp/longjmp as removed in 2006, but the include remained.
Remove it now.
Fixes: 1bac3b49cd ("Import the current version of talloc...")
Signed-off-by: Jason Andryuk <jason.andryuk@xxxxxxx>
---
I truncated the Fixes above. The full line is:
Fixes: 1bac3b49cd ("Import the current version of talloc from the Samba 3
source base. This gives us greater confidence that our talloc implementation
is "known good". Remove the OOM handling from consider_message:
talloc_set_fail_handler is no longer supported.")
---
tools/xenstored/core.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/tools/xenstored/core.c b/tools/xenstored/core.c
index 91b2530e5c..835402af81 100644
--- a/tools/xenstored/core.c
+++ b/tools/xenstored/core.c
@@ -35,7 +35,6 @@
#include <getopt.h>
#include <signal.h>
#include <assert.h>
-#include <setjmp.h>
#include <xenevtchn.h>
#include <xen-tools/xenstore-common.h>
--
2.49.0
|