summaryrefslogtreecommitdiffstats
path: root/src/include/err.h
blob: ba4b32aec38ced8ae1b7f802b082b26f5c71133c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef CEPH_ERR_H
#define CEPH_ERR_H

/*
 * adapted from linux 2.6.24 include/linux/err.h
 */
#define MAX_ERRNO 4095
#define IS_ERR_VALUE(x) ((x) >= (unsigned long)-MAX_ERRNO)

#include <errno.h>

/* this generates a warning in c++; caller can do the cast manually
static inline void *ERR_PTR(long error)
{
  return (void *) error;
}
*/

static inline long PTR_ERR(const void *ptr)
{
  return (long) ptr;
}

static inline long IS_ERR(const void *ptr)
{
  return IS_ERR_VALUE((unsigned long)ptr);
}

#endif