int bench_evlist_open_close(int argc, const char **argv);
 int bench_breakpoint_thread(int argc, const char **argv);
 int bench_breakpoint_enable(int argc, const char **argv);
+int bench_uprobe_baseline(int argc, const char **argv);
 int bench_pmu_scan(int argc, const char **argv);
 
 #define BENCH_FORMAT_DEFAULT_STR       "default"
 
--- /dev/null
+// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+/*
+ * uprobe.c
+ *
+ * uprobe benchmarks
+ *
+ *  Copyright (C) 2023, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
+ */
+#include "../perf.h"
+#include "../util/util.h"
+#include <subcmd/parse-options.h>
+#include "../builtin.h"
+#include "bench.h"
+#include <linux/time64.h>
+
+#include <inttypes.h>
+#include <stdio.h>
+#include <sys/time.h>
+#include <sys/types.h>
+#include <time.h>
+#include <unistd.h>
+#include <stdlib.h>
+
+#define LOOPS_DEFAULT 1000
+static int loops = LOOPS_DEFAULT;
+
+static const struct option options[] = {
+       OPT_INTEGER('l', "loop",        &loops,         "Specify number of loops"),
+       OPT_END()
+};
+
+static const char * const bench_uprobe_usage[] = {
+       "perf bench uprobe <options>",
+       NULL
+};
+
+static int bench_uprobe(int argc, const char **argv)
+{
+       const char *name = "usleep(1000)", *unit = "usec";
+       struct timespec start, end;
+       u64 diff;
+       int i;
+
+       argc = parse_options(argc, argv, options, bench_uprobe_usage, 0);
+
+       clock_gettime(CLOCK_REALTIME, &start);
+
+       for (i = 0; i < loops; i++) {
+               usleep(USEC_PER_MSEC);
+       }
+
+       clock_gettime(CLOCK_REALTIME, &end);
+
+       diff = end.tv_sec * NSEC_PER_SEC + end.tv_nsec - (start.tv_sec * NSEC_PER_SEC + start.tv_nsec);
+       diff /= NSEC_PER_USEC;
+
+       switch (bench_format) {
+       case BENCH_FORMAT_DEFAULT:
+               printf("# Executed %'d %s calls\n", loops, name);
+               printf(" %14s: %'" PRIu64 " %ss\n\n", "Total time", diff, unit);
+               printf(" %'.3f %ss/op\n", (double)diff / (double)loops, unit);
+               break;
+
+       case BENCH_FORMAT_SIMPLE:
+               printf("%" PRIu64 "\n", diff);
+               break;
+
+       default:
+               /* reaching here is something of a disaster */
+               fprintf(stderr, "Unknown format:%d\n", bench_format);
+               exit(1);
+       }
+
+       return 0;
+}
+
+int bench_uprobe_baseline(int argc, const char **argv)
+{
+       return bench_uprobe(argc, argv);
+}
 
        { NULL, NULL, NULL },
 };
 
+static struct bench uprobe_benchmarks[] = {
+       { "baseline",   "Baseline libc usleep(1000) call",      bench_uprobe_baseline,  },
+       { NULL, NULL, NULL },
+};
+
 struct collection {
        const char      *name;
        const char      *summary;
 #endif
        { "internals",  "Perf-internals benchmarks",                    internals_benchmarks    },
        { "breakpoint", "Breakpoint benchmarks",                        breakpoint_benchmarks   },
+       { "uprobe",     "uprobe benchmarks",                            uprobe_benchmarks       },
        { "all",        "All benchmarks",                               NULL                    },
        { NULL,         NULL,                                           NULL                    }
 };