diff options
author | Oskari Rauta <oskari.rauta@gmail.com> | 2022-03-03 02:42:23 +0200 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2022-03-02 16:31:08 -0800 |
commit | c36c8ed94cfc97b3b517c082cd791dc59e48f533 (patch) | |
tree | 2af990b85b4f4a9ec8d03e095223e4c372975e50 /utils/podman/patches | |
parent | 5e2df7e38ea670b3e43c2efba944f6c242dc7cb3 (diff) |
podman: update to version 4.0.2
- Patch had became obsolete, it's contents were merged to upstream. Patch removed.
- Version updated, long list of changes is available at https://github.com/containers/podman/releases
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
Diffstat (limited to 'utils/podman/patches')
-rw-r--r-- | utils/podman/patches/010-declare-temp-failure-retry-before-usage.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/utils/podman/patches/010-declare-temp-failure-retry-before-usage.patch b/utils/podman/patches/010-declare-temp-failure-retry-before-usage.patch deleted file mode 100644 index a111da41f..000000000 --- a/utils/podman/patches/010-declare-temp-failure-retry-before-usage.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- a/pkg/rootless/rootless_linux.c -+++ b/pkg/rootless/rootless_linux.c -@@ -19,6 +19,15 @@ - #include <sys/select.h> - #include <stdio.h> - -+#ifndef TEMP_FAILURE_RETRY -+#define TEMP_FAILURE_RETRY(expression) \ -+ (__extension__ \ -+ ({ long int __result; \ -+ do __result = (long int) (expression); \ -+ while (__result == -1L && errno == EINTR); \ -+ __result; })) -+#endif -+ - #define cleanup_free __attribute__ ((cleanup (cleanup_freep))) - #define cleanup_close __attribute__ ((cleanup (cleanup_closep))) - #define cleanup_dir __attribute__ ((cleanup (cleanup_dirp))) -@@ -72,15 +81,6 @@ int rename_noreplace (int olddirfd, cons - return rename (oldpath, newpath); - } - --#ifndef TEMP_FAILURE_RETRY --#define TEMP_FAILURE_RETRY(expression) \ -- (__extension__ \ -- ({ long int __result; \ -- do __result = (long int) (expression); \ -- while (__result == -1L && errno == EINTR); \ -- __result; })) --#endif -- - static const char *_max_user_namespaces = "/proc/sys/user/max_user_namespaces"; - static const char *_unprivileged_user_namespaces = "/proc/sys/kernel/unprivileged_userns_clone"; - |