~ubuntu-branches/ubuntu/quantal/ceph/quantal

« back to all changes in this revision

Viewing changes to src/include/fiemap.h

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum, Clint Byrum, Micah Gersten
  • Date: 2011-02-12 22:50:26 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110212225026-yyyw4tk0msgql3ul
Tags: 0.24.2-0ubuntu1
[ Clint Byrum <clint@ubuntu.com> ]
* New upstream release. (LP: #658670, LP: #684011)
* debian/patches/fix-mkcephfs.patch: dropped (applied upstream)
* Removed .la files from libceph1-dev, libcrush1-dev and 
  librados1-dev (per Debian policy v3.9.1 10.2).
* debian/control: adding pkg-config as a build dependency
* debian/control: depend on libcrypto++-dev instead of libssl-dev
* debian/watch: added watch file

[ Micah Gersten <micahg@ubuntu.com> ]
* debian/control: add Homepage

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __CEPH_FIEMAP_H
 
2
#define __CEPH_FIEMAP_H
 
3
 
 
4
#include "acconfig.h"
 
5
 
 
6
/*
 
7
 * the header is missing on most systems.  for the time being at
 
8
 * least, include our own copy in the repo.
 
9
 */
 
10
#ifdef HAVE_FIEMAP_H
 
11
# include <linux/fiemap.h>
 
12
#else
 
13
# include "linux_fiemap.h"
 
14
#endif
 
15
 
 
16
#include <linux/ioctl.h>
 
17
#ifndef FS_IOC_FIEMAP
 
18
# define FS_IOC_FIEMAP                        _IOWR('f', 11, struct fiemap)
 
19
#endif
 
20
 
 
21
extern "C" struct fiemap *read_fiemap(int fd);
 
22
 
 
23
#endif