Groups | Search | Server Info | Login | Register


Groups > comp.os.linux.misc > #78692

SYSCALL

From "Carlos E.R." <robin_listas@es.invalid>
Newsgroups comp.os.linux.advocacy, comp.os.linux.misc
Subject SYSCALL
Date 2025-12-10 14:01 +0100
Message-ID <jh7o0mxqcf.ln2@Telcontar.valinor> (permalink)
References (20 earlier) <XnsB3AAAD7A1C510HT1@cF04o3ON7k2lx05.lLC.9r5> <10h2u70$36bnl$1@dont-email.me> <XnsB3AEDB28EFFADHT1@cF04o3ON7k2lx05.lLC.9r5> <10h5kjp$3tql3$1@dont-email.me> <10h6nea$6are$1@dont-email.me>

Cross-posted to 2 groups.

Show all headers | View raw


On 2025-12-08 15:30, vallor wrote:
> At Mon, 08 Dec 2025 04:36:08 +0000, vallor <vallor@vallor.earth> wrote:
>> At Mon, 8 Dec 2025 02:32:39 -0000 (UTC), Gremlin <nobody@haph.org> wrote:
>>> vallor <vallor@vallor.earth> news:10h2u70$36bnl$1@dont-email.me Sun,
>>> 07 Dec 2025 04:01:36 GMT in comp.os.linux.advocacy, wrote:
>>>> At Wed, 3 Dec 2025 22:03:12 -0000 (UTC), Gremlin <nobody@haph.org> wrote:

...

> Looked up the "syscall interrupt" on the net, discovered that it
> used to be 0x80, but now newer processors use a new opcode,
> "SYSCALL".

I asked google, got some answers and an AI summary:

The SYSCALL instruction (opcode 0F 05) is a fast, modern assembly instruction in 64-bit x86 systems used by applications (user-mode, Ring 3) to request services from the operating system kernel (kernel-mode, Ring 0). It efficiently transitions from user to kernel space by saving the return address (RIP) to the RCX register, flipping privilege levels, loading the kernel entry point from a Model Specific Register (MSR), and using the SYSRET instruction to return, replacing the slower INT 0x80 interrupt method for better performance, though security measures like KPTI add overhead.
How it works:

     Initiation: A user program executes SYSCALL, often after placing a system call number in RAX and arguments in registers like RDI, RSI, RDX.
     CPU Action:
         Saves the address of the next instruction (RIP) into RCX.
         Saves the RFLAGS into R11.
         Loads a new RIP from a special kernel MSR, pointing to the kernel's system call entry code.
         Changes privilege level from Ring 3 to Ring 0 (kernel mode).
     Kernel Execution: The kernel runs, uses arguments, performs the requested service (e.g., file I/O, process management).
     Return: The kernel uses the saved RCX and R11 to execute SYSRET, transitioning back to user mode, restoring registers, and resuming the user program.

Key aspects:

     Performance: Much faster than the older INT 0x80 method, crucial for modern OS performance.
     Registers: Uses specific registers (RAX for syscall number, RDI, RSI, RDX, R10, R8, R9 for arguments, RCX for return address).
     Security: A vital part of OS security, creating a boundary between trusted kernel and untrusted user code.
     Context: Part of the SYSCALL/SYSRET pair, optimized for 64-bit systems.

> 
>   ...and so forth.
> 


-- 
Cheers, Carlos.
ES🇪🇸, EU🇪🇺;

Back to comp.os.linux.misc | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-11 23:38 +0000
  Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-12 02:59 +0100
    Re: What Thinkest Thou Of LO Donate Banner? rbowman <bowman@montana.com> - 2025-11-12 03:23 +0000
      Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-14 14:18 +0100
        Re: What Thinkest Thou Of LO Donate Banner? rbowman <bowman@montana.com> - 2025-11-14 19:43 +0000
          Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-14 22:20 +0100
    Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-12 05:11 +0000
      Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-12 06:29 +0000
        Re: What Thinkest Thou Of LO Donate Banner? Nuno Silva <nunojsilva@invalid.invalid> - 2025-11-12 06:46 +0000
          Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-12 14:14 +0000
          Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-13 02:06 +0000
            Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-13 02:14 +0000
              Re: What Thinkest Thou Of LO Donate Banner? Nuno Silva <nunojsilva@invalid.invalid> - 2025-11-13 11:01 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-13 13:39 +0000
      Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-14 14:20 +0100
        Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-15 20:50 +0000
          Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-15 22:08 +0100
            Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-16 05:40 +0000
              Re: What Thinkest Thou Of LO Donate Banner? Nuno Silva <nunojsilva@invalid.invalid> - 2025-11-16 11:05 +0000
                Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-17 01:33 +0100
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-20 22:23 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-11-20 14:59 -0800
                Re: What Thinkest Thou Of LO Donate Banner? Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-20 23:54 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-21 00:44 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-11-21 14:33 -0800
                Re: What Thinkest Thou Of LO Donate Banner? Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-11-22 00:16 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-22 00:20 +0000
                Re: What Thinkest Thou Of LO Donate Banner? rbowman <bowman@montana.com> - 2025-11-22 03:20 +0000
                Re: What Thinkest Thou Of LO Donate Banner? pothead <pothead@snakebite.com> - 2025-11-22 14:17 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Nuno Silva <nunojsilva@invalid.invalid> - 2025-11-22 14:39 +0000
                Re: What Thinkest Thou Of LO Donate Banner? rbowman <bowman@montana.com> - 2025-11-22 20:08 +0000
                Re: What Thinkest Thou Of LO Donate Banner? tom nossen <news@nossen.org> - 2025-11-26 22:07 +0100
                Re: What Thinkest Thou Of LO Donate Banner? Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-26 21:50 +0000
                Re: What Thinkest Thou Of LO Donate Banner? tom nossen <news@nossen.org> - 2025-11-27 12:18 +0100
                Re: What Thinkest Thou Of LO Donate Banner? Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-27 21:26 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-11-22 18:56 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-11-24 09:06 -0800
                Re: What Thinkest Thou Of LO Donate Banner? "Joel W. Crump" <joelcrump@gmail.com> - 2025-11-24 12:10 -0500
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-11-24 09:29 -0800
                Re: What Thinkest Thou Of LO Donate Banner? Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-24 23:15 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-11-24 15:35 -0800
                Re: What Thinkest Thou Of LO Donate Banner? rbowman <bowman@montana.com> - 2025-11-25 00:21 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-23 03:19 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-23 05:20 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-11-24 09:26 -0800
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-24 18:27 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-24 23:23 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-02 20:13 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-12-03 08:39 -0800
                Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-12-03 19:42 +0100
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-03 22:03 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-12-03 22:36 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-04 03:05 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-12-04 14:24 +0000
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-04 14:35 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-12-04 08:21 -0800
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-04 18:05 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-12-04 10:09 -0800
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-04 19:09 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-12-04 11:11 -0800
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-04 19:55 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-19 01:22 +0000
                Re: What Thinkest Thou Of LO Donate Banner? CrudeSausage <crude@sausa.ge> - 2025-12-18 20:45 -0500
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-19 10:54 +0000
                Re: What Thinkest Thou Of LO Donate Banner? CrudeSausage <crude@sausa.ge> - 2025-12-19 09:11 -0500
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-19 15:02 +0000
                Re: What Thinkest Thou Of LO Donate Banner? CrudeSausage <crude@sausa.ge> - 2025-12-19 10:38 -0500
                Re: What Thinkest Thou Of LO Donate Banner? "Joel W. Crump" <joelcrump@gmail.com> - 2025-12-19 11:03 -0500
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-19 18:14 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-12-19 08:09 -0800
                Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-12-19 21:56 +0100
                Re: What Thinkest Thou Of LO Donate Banner? rbowman <bowman@montana.com> - 2025-12-20 05:56 +0000
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-20 10:52 +0000
                Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-12-20 15:03 +0100
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-20 14:50 +0000
                Ozempic (and Mounjaro, Zepbound, etc) Lars Poulsen <lars@beagle-ears.com> - 2025-12-20 15:04 +0000
                Re: Ozempic (and Mounjaro, Zepbound, etc) chrisv <chrisv@nospam.invalid> - 2025-12-20 17:21 -0600
                Re: What Thinkest Thou Of LO Donate Banner? Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-12-20 20:45 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Sump <sumpusent@outlook.com> - 2025-12-20 22:02 +0000
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-21 01:56 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Sump <sumpusent@outlook.com> - 2025-12-21 02:10 +0000
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-21 02:13 +0000
                Re: Big Pharma (was Re: What Thinkest Thou Of LO Donate Banner?) Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-21 02:09 +0000
                Re: Big Pharma (was Re: What Thinkest Thou Of LO Donate Banner?) Sump <sumpusent@outlook.com> - 2025-12-21 02:38 +0000
                Re: Big Pharma (was Re: What Thinkest Thou Of LO Donate Banner?) rbowman <bowman@montana.com> - 2025-12-21 05:00 +0000
                Re: Big Pharma (was Re: What Thinkest Thou Of LO Donate Banner?) The Natural Philosopher <tnp@invalid.invalid> - 2025-12-21 10:57 +0000
                Re: What Thinkest Thou Of LO Donate Banner? rbowman <bowman@montana.com> - 2025-12-21 04:47 +0000
                Re: What Thinkest Thou Of LO Donate Banner? rbowman <bowman@montana.com> - 2025-12-21 04:43 +0000
                Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-12-20 15:01 +0100
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-20 14:47 +0000
                Re: Marxist Healthcare( was Re: What Thinkest Thou Of LO Donate Banner?) Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-21 02:11 +0000
                Re: Marxist Healthcare( was Re: What Thinkest Thou Of LO Donate Banner?) rbowman <bowman@montana.com> - 2025-12-21 04:34 +0000
                Re: Marxist Healthcare( was Re: What Thinkest Thou Of LO Donate Banner?) Bob Tennent <rdtennent@tennent.ca> - 2025-12-22 02:17 +0000
                Re: Marxist Healthcare( was Re: What Thinkest Thou Of LO Donate Banner?) Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-22 04:43 +0000
                Re: Marxist Healthcare( was Re: What Thinkest Thou Of LO Donate Banner?) Bob Tennent <rdtennent@tennent.ca> - 2025-12-22 15:53 +0000
                Re: Marxist Healthcare( was Re: What Thinkest Thou Of LO Donate Banner?) c186282 <c186282@nnada.net> - 2025-12-22 01:54 -0500
                Re: Marxist Healthcare( was Re: What Thinkest Thou Of LO Donate Banner?) Bob Tennent <rdtennent@tennent.ca> - 2025-12-22 15:57 +0000
                Re: Marxist Healthcare( was Re: What Thinkest Thou Of LO Donate Banner?) Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2025-12-22 08:49 -0800
                Re: Marxist Healthcare( was Re: What Thinkest Thou Of LO Donate Banner?) The Natural Philosopher <tnp@invalid.invalid> - 2025-12-22 19:16 +0000
                Re: Marxist Healthcare (was Re: What Thinkest Thou Of LO Donate Banner?) Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-12-22 21:24 +0000
                Re: Marxist Healthcare( was Re: What Thinkest Thou Of LO Donate Banner?) rbowman <bowman@montana.com> - 2025-12-22 19:47 +0000
                Re: Marxist Healthcare Nuno Silva <nunojsilva@invalid.invalid> - 2025-12-23 11:02 +0000
                Re: Marxist Healthcare Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2025-12-23 11:38 -0800
                Re: Marxist Healthcare The Natural Philosopher <tnp@invalid.invalid> - 2025-12-23 20:23 +0000
                Re: Marxist Healthcare Richard Kettlewell <invalid@invalid.invalid> - 2025-12-23 22:41 +0000
                Re: Marxist Healthcare The Natural Philosopher <tnp@invalid.invalid> - 2025-12-24 12:23 +0000
                OT: Post-infection syndromes (was: Re: Marxist Healthcare) Nuno Silva <nunojsilva@invalid.invalid> - 2026-01-24 09:24 +0000
                Re: OT: Post-infection syndromes The Natural Philosopher <tnp@invalid.invalid> - 2026-01-24 11:16 +0000
                Re: OT: Post-infection syndromes "Carlos E.R." <robin_listas@es.invalid> - 2026-01-24 14:14 +0100
                Re: OT: Post-infection syndromes Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2026-01-24 08:43 -0800
                Re: Marxist Healthcare rbowman <bowman@montana.com> - 2025-12-23 23:42 +0000
                Re: What Thinkest Thou Of LO Donate Banner? CrudeSausage <crude@sausa.ge> - 2025-12-20 08:33 -0500
                Re: What Thinkest Thou Of LO Donate Banner? rbowman <bowman@montana.com> - 2025-12-21 04:40 +0000
                Re: What Thinkest Thou Of LO Donate Banner? CrudeSausage <crude@sausa.ge> - 2025-12-21 19:59 -0500
                Ozempic... "Carlos E.R." <robin_listas@es.invalid> - 2025-12-26 22:24 +0100
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-04 22:47 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-12-05 00:15 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-04 22:48 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-12-05 00:14 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-04 22:47 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-12-05 00:16 +0000
                Re: What Thinkest Thou Of LO Donate Banner? John Ames <commodorejohn@gmail.com> - 2025-12-03 14:41 -0800
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-04 03:05 +0000
                Re: What Thinkest Thou Of LO Donate Banner? vallor <vallor@vallor.earth> - 2025-12-07 04:01 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-08 02:32 +0000
                Re: What Thinkest Thou Of LO Donate Banner? vallor <vallor@vallor.earth> - 2025-12-08 04:36 +0000
                Re: What Thinkest Thou Of LO Donate Banner? vallor <vallor@vallor.earth> - 2025-12-08 14:30 +0000
                Re: What Thinkest Thou Of LO Donate Banner? pothead <pothead@snakebite.com> - 2025-12-08 23:21 +0000
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-09 10:01 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-10 01:37 +0000
                Re: What Thinkest Thou Of LO Donate Banner? pothead <pothead@snakebite.com> - 2025-12-10 18:13 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-12-10 20:06 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-12 07:44 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Daniel70 <daniel47@nomail.afraid.org> - 2025-12-12 22:39 +1100
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-12-12 12:18 +0000
                SYSCALL "Carlos E.R." <robin_listas@es.invalid> - 2025-12-10 14:01 +0100
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-12-10 01:37 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-20 23:01 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Nuno Silva <nunojsilva@invalid.invalid> - 2025-11-21 09:58 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-23 03:19 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-23 05:21 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-23 19:01 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-23 23:23 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Nuno Silva <nunojsilva@invalid.invalid> - 2025-11-23 23:41 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-24 00:39 +0000
                Re: What Thinkest Thou Of LO Donate Banner? c186282 <c186282@nnada.net> - 2025-11-23 23:46 -0500
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-24 15:45 +0000
                Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-24 20:59 +0100
                Re: What Thinkest Thou Of LO Donate Banner? ALB <alb@lupinedb.org> - 2025-11-25 19:38 -0500
                Re: What Thinkest Thou Of LO Donate Banner? The Natural Philosopher <tnp@invalid.invalid> - 2025-11-26 13:35 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-26 15:12 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-26 15:10 +0000
              Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-16 15:14 +0100
          Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-16 02:56 +0000
            Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-16 05:40 +0000
              Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-16 15:13 +0100
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-20 22:23 +0000
                Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-21 13:05 +0100
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-21 15:35 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-23 03:19 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-23 05:16 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-23 23:23 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-24 00:33 +0000
                Re: What Thinkest Thou Of LO Donate Banner? Gremlin <nobody@haph.org> - 2025-11-23 03:19 +0000
                Re: What Thinkest Thou Of LO Donate Banner? "Carlos E.R." <robin_listas@es.invalid> - 2025-11-23 22:05 +0100
                Re: What Thinkest Thou Of LO Donate Banner? Brock McNuggets <brock.mcnuggets@gmail.com> - 2025-11-24 02:24 +0000

csiph-web