public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 41bea0154d6c01f79e0f141f0eed82b621325c32 1165 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
 
// SPDX-License-Identifier: GPL-2.0-or-later

/* PASST - Plug A Simple Socket Transport
 *  for qemu/UNIX domain socket mode
 *
 * PASTA - Pack A Subtle Tap Abstraction
 *  for network namespace/tap device mode
 *
 * arch.c - Architecture-specific implementations
 *
 * Copyright (c) 2022 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "log.h"

/**
 * arch_avx2_exec() - Switch to AVX2 build if supported
 * @argv:	Arguments from command line
 */
#ifdef __x86_64__
void arch_avx2_exec(char **argv)
{
	char exe[PATH_MAX] = { 0 };
	const char *p;

	if (readlink("/proc/self/exe", exe, PATH_MAX - 1) < 0)
		die_perror("readlink /proc/self/exe");

	p = strstr(exe, ".avx2");
	if (p && strlen(p) == strlen(".avx2"))
		return;

	if (__builtin_cpu_supports("avx2")) {
		char new_path[PATH_MAX + sizeof(".avx2")];

		snprintf(new_path, PATH_MAX + sizeof(".avx2"), "%s.avx2", exe);
		execve(new_path, argv, environ);
		warn_perror("Can't run AVX2 build, using non-AVX2 version");
	}
}
#else
void arch_avx2_exec(char **argv) { (void)argv; }
#endif

debug log:

solving 41bea01 ...
found 41bea01 in https://archives.passt.top/passt-dev/20240617120319.1206857-6-sbrivio@redhat.com/
found 80a41bc in https://passt.top/passt
preparing index
index prepared:
100644 80a41bc39b4f61bd1c24d7e2b2058b87cda30674	arch.c

applying [1/1] https://archives.passt.top/passt-dev/20240617120319.1206857-6-sbrivio@redhat.com/
diff --git a/arch.c b/arch.c
index 80a41bc..41bea01 100644

Checking patch arch.c...
Applied patch arch.c cleanly.

index at:
100644 41bea0154d6c01f79e0f141f0eed82b621325c32	arch.c

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

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 IMAP folder(s).