Blame view

arch/um/drivers/cow.h 1.84 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
  #ifndef __COW_H__
  #define __COW_H__
  
  #include <asm/types.h>
028c0cc16   Paolo 'Blaisorblade' Giarrusso   [PATCH] uml: clea...
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  #if defined(__KERNEL__)
  
  # include <asm/byteorder.h>
  
  # if defined(__BIG_ENDIAN)
  #	define ntohll(x) (x)
  #	define htonll(x) (x)
  # elif defined(__LITTLE_ENDIAN)
  #	define ntohll(x)  be64_to_cpu(x)
  #	define htonll(x)  cpu_to_be64(x)
  # else
  #	error "Could not determine byte order"
  # endif
  
  #else
  /* For the definition of ntohl, htonl and __BYTE_ORDER */
  #include <endian.h>
  #include <netinet/in.h>
  #if defined(__BYTE_ORDER)
52a2d3e45   Paolo 'Blaisorblade' Giarrusso   [PATCH] uml: clea...
24
25
26
27
28
29
30
31
32
  #  if __BYTE_ORDER == __BIG_ENDIAN
  #	define ntohll(x) (x)
  #	define htonll(x) (x)
  #  elif __BYTE_ORDER == __LITTLE_ENDIAN
  #	define ntohll(x)  bswap_64(x)
  #	define htonll(x)  bswap_64(x)
  #  else
  #	error "Could not determine byte order: __BYTE_ORDER uncorrectly defined"
  #  endif
028c0cc16   Paolo 'Blaisorblade' Giarrusso   [PATCH] uml: clea...
33
34
35
  
  #else  /* ! defined(__BYTE_ORDER) */
  #	error "Could not determine byte order: __BYTE_ORDER not defined"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
  #endif
028c0cc16   Paolo 'Blaisorblade' Giarrusso   [PATCH] uml: clea...
37
  #endif /* ! defined(__KERNEL__) */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
39
40
41
42
43
44
45
46
  
  extern int init_cow_file(int fd, char *cow_file, char *backing_file,
  			 int sectorsize, int alignment, int *bitmap_offset_out,
  			 unsigned long *bitmap_len_out, int *data_offset_out);
  
  extern int file_reader(__u64 offset, char *buf, int len, void *arg);
  extern int read_cow_header(int (*reader)(__u64, char *, int, void *),
  			   void *arg, __u32 *version_out,
  			   char **backing_file_out, time_t *mtime_out,
52c737823   Paolo 'Blaisorblade' Giarrusso   [PATCH] uml: avoi...
47
  			   unsigned long long *size_out, int *sectorsize_out,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  			   __u32 *align_out, int *bitmap_offset_out);
  
  extern int write_cow_header(char *cow_file, int fd, char *backing_file,
  			    int sectorsize, int alignment,
  			    unsigned long long *size);
  
  extern void cow_sizes(int version, __u64 size, int sectorsize, int align,
  		      int bitmap_offset, unsigned long *bitmap_len_out,
  		      int *data_offset_out);
  
  #endif
  
  /*
   * ---------------------------------------------------------------------------
   * Local variables:
   * c-file-style: "linux"
   * End:
   */