The corresponding tapset/syscalls2.stp has: probe syscall.signalfd = kernel.function("sys_signalfd4").call !, kernel.function("sys_signalfd").call ?
The reason why it is done this way in syscalls.stp is that in the kernel sys_signalfd is just a wrapper around sys_signalfd4. This way we ignore the sys_signalfd call, and only catch the sys_signalfd4 call on kernels with sys_signalfd4. Unfortunately, as bug #11424 notes, '!' (optional and sufficient) doesn't work for kprobe.function probes. So, the above logic will be difficult to duplicate in tapset/nd_syscalls.stp.
Now that bug #11424 and bug #14378 are fixed, this bug can be addressed. Fixed in commit 1c3d0f1.