Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1219996

[PATCH 1/5] tools: Add err.h with ERR_PTR PTR_ERR interface

From Jiri Olsa <jolsa@kernel.org>
Newsgroups linux.kernel
Subject [PATCH 1/5] tools: Add err.h with ERR_PTR PTR_ERR interface
Date 2015-09-07 10:40 +0200
Message-ID <q6082-ic-17@gated-at.bofh.it> (permalink)
References <q6082-ic-11@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Adding part of the kernel's <linux/err.h> interface:
  inline void * __must_check ERR_PTR(long error);
  inline long   __must_check PTR_ERR(__force const void *ptr);
  inline bool   __must_check IS_ERR(__force const void *ptr);

it will be used to propagate error through pointers
in following patches.

Link: http://lkml.kernel.org/n/tip-ufgnyf683uab69anmmrabgdf@git.kernel.org
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
---
 tools/include/linux/err.h | 49 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)
 create mode 100644 tools/include/linux/err.h

diff --git a/tools/include/linux/err.h b/tools/include/linux/err.h
new file mode 100644
index 000000000000..c9ada48f5156
--- /dev/null
+++ b/tools/include/linux/err.h
@@ -0,0 +1,49 @@
+#ifndef __TOOLS_LINUX_ERR_H
+#define __TOOLS_LINUX_ERR_H
+
+#include <linux/compiler.h>
+#include <linux/types.h>
+
+#include <asm/errno.h>
+
+/*
+ * Original kernel header comment:
+ *
+ * Kernel pointers have redundant information, so we can use a
+ * scheme where we can return either an error code or a normal
+ * pointer with the same return value.
+ *
+ * This should be a per-architecture thing, to allow different
+ * error and pointer decisions.
+ *
+ * Userspace note:
+ * The same principle works for userspace, because 'error' pointers
+ * fall down to the unused hole far from user space, as described
+ * in Documentation/x86/x86_64/mm.txt for x86_64 arch:
+ *
+ * 0000000000000000 - 00007fffffffffff (=47 bits) user space, different per mm hole caused by [48:63] sign extension
+ * ffffffffffe00000 - ffffffffffffffff (=2 MB) unused hole
+ *
+ * It should be the same case for other architectures, because
+ * this code is used in generic kernel code.
+ */
+#define MAX_ERRNO	4095
+
+#define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
+
+static inline void * __must_check ERR_PTR(long error)
+{
+	return (void *) error;
+}
+
+static inline long __must_check PTR_ERR(__force const void *ptr)
+{
+	return (long) ptr;
+}
+
+static inline bool __must_check IS_ERR(__force const void *ptr)
+{
+	return IS_ERR_VALUE((unsigned long)ptr);
+}
+
+#endif /* _LINUX_ERR_H */
-- 
2.4.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCHv2 0/5] perf tools: Enhance parsing events tracepoint error output Jiri Olsa <jolsa@kernel.org> - 2015-09-07 10:40 +0200
  [PATCH 1/5] tools: Add err.h with ERR_PTR PTR_ERR interface Jiri Olsa <jolsa@kernel.org> - 2015-09-07 10:40 +0200
    Re: [PATCH 1/5] tools: Add err.h with ERR_PTR PTR_ERR interface Raphaël Beamonte <raphael.beamonte@gmail.com> - 2015-09-08 22:30 +0200
    Re: [PATCH 1/5] tools: Add err.h with ERR_PTR PTR_ERR interface Raphaël Beamonte <raphael.beamonte@gmail.com> - 2015-09-08 22:30 +0200
      Re: [PATCH 1/5] tools: Add err.h with ERR_PTR PTR_ERR interface Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-09-08 23:10 +0200
        Re: [PATCH 1/5] tools: Add err.h with ERR_PTR PTR_ERR interface Raphaël Beamonte <raphael.beamonte@gmail.com> - 2015-09-08 23:30 +0200
    Re: [PATCH 1/5] tools: Add err.h with ERR_PTR PTR_ERR interface Raphaël Beamonte <raphael.beamonte@gmail.com> - 2015-09-08 23:40 +0200
    [tip:perf/core] tools: Add err.h with ERR_PTR PTR_ERR interface tip-bot for Jiri Olsa <tipbot@zytor.com> - 2015-09-16 09:30 +0200
      Re: [tip:perf/core] tools: Add err.h with ERR_PTR PTR_ERR interface Vinson Lee <vlee@twopensource.com> - 2015-09-22 01:50 +0200
  [PATCH 3/5] perf tools: Propagate error info for the tracepoint parsing Jiri Olsa <jolsa@kernel.org> - 2015-09-07 10:40 +0200
    Re: [PATCH 3/5] perf tools: Propagate error info for the tracepoint parsing Raphaël Beamonte <raphael.beamonte@gmail.com> - 2015-09-08 23:50 +0200
      Re: [PATCH 3/5] perf tools: Propagate error info for the tracepoint  parsing Jiri Olsa <jolsa@redhat.com> - 2015-09-09 10:00 +0200
    Re: [PATCH 3/5] perf tools: Propagate error info for the tracepoint  parsing Matt Fleming <matt@codeblueprint.co.uk> - 2015-09-12 13:00 +0200
    [tip:perf/core] perf tools:   Propagate error info for the tracepoint parsing tip-bot for Jiri Olsa <tipbot@zytor.com> - 2015-09-16 09:30 +0200
  [PATCH 4/5] perf tools: Propagate error info from tp_format Jiri Olsa <jolsa@kernel.org> - 2015-09-07 10:40 +0200
    Re: [PATCH 4/5] perf tools: Propagate error info from tp_format Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-09-09 23:00 +0200
      Re: [PATCH 4/5] perf tools: Propagate error info from tp_format Jiri Olsa <jolsa@redhat.com> - 2015-09-10 10:30 +0200
        Re: [PATCH 4/5] perf tools: Propagate error info from tp_format Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-09-10 16:20 +0200
        Re: [PATCH 4/5] perf tools: Propagate error info from tp_format Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-09-14 23:00 +0200
          Re: [PATCH 4/5] perf tools: Propagate error info from tp_format Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-09-14 23:10 +0200
          Re: [PATCH 4/5] perf tools: Propagate error info from tp_format Raphaël Beamonte <raphael.beamonte@gmail.com> - 2015-09-14 23:10 +0200
            Re: [PATCH 4/5] perf tools: Propagate error info from tp_format Arnaldo Carvalho de Melo <arnaldo.melo@gmail.com> - 2015-09-14 23:40 +0200
              Re: [PATCH 4/5] perf tools: Propagate error info from tp_format Raphaël Beamonte <raphael.beamonte@gmail.com> - 2015-09-15 00:10 +0200
                Re: [PATCH 4/5] perf tools: Propagate error info from tp_format Arnaldo Carvalho de Melo <arnaldo.melo@gmail.com> - 2015-09-15 04:40 +0200
    [tip:perf/core] perf evsel: Propagate error info from tp_format tip-bot for Jiri Olsa <tipbot@zytor.com> - 2015-09-16 09:40 +0200

csiph-web