diff options
author | Ammar Faizi <ammarfaizi2@gnuweeb.org> | 2022-04-21 14:52:30 +0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-04-21 06:28:18 -0600 |
commit | 4ad972d6d1b16e4fb069fc2f006265942cf33103 (patch) | |
tree | ac4cccb42384250ac8c2e45d9c0755d35f9a5bbe | |
parent | b7d8dd8bbf5b8550c8a0c1ed70431cd8050709f0 (diff) | |
download | liburing-4ad972d6d1b16e4fb069fc2f006265942cf33103.tar.gz liburing-4ad972d6d1b16e4fb069fc2f006265942cf33103.tar.bz2 |
arch/x86/syscall: Remove TODO comment
nolibc support for x86 32-bit has been added in commit b7d8dd8bbf5b855
("arch/x86/syscall: Add x86 32-bit native syscall support"). But I
forgot to remove the comment that says "We can't use CONFIG_NOLIBC for
x86 (32-bit)".
Remove it.
Signed-off-by: Ammar Faizi <ammarfaizi2@gnuweeb.org>
Link: https://lore.kernel.org/r/20220421075205.98770-1-ammar.faizi@intel.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | src/arch/x86/syscall.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/arch/x86/syscall.h b/src/arch/x86/syscall.h index 8cd24dd..43c576b 100644 --- a/src/arch/x86/syscall.h +++ b/src/arch/x86/syscall.h @@ -144,12 +144,6 @@ #else /* #if defined(__x86_64__) */ -/* - * For x86 (32-bit), fallback to libc wrapper. - * We can't use CONFIG_NOLIBC for x86 (32-bit) at the moment. - * - * TODO: Add x86 (32-bit) nolibc support. - */ #ifdef CONFIG_NOLIBC /** * Note for syscall registers usage (x86, 32-bit): |