mirror of
https://github.com/ceph/ceph
synced 2025-03-11 02:39:05 +00:00
*** empty log message ***
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@143 29311d96-e01e-0410-9327-a35deaab8ce9
This commit is contained in:
parent
ff58476920
commit
ed71ba61a0
@ -1,14 +1,11 @@
|
||||
|
||||
CC=g++
|
||||
#CC=distcc g++
|
||||
#CC=mpiCC
|
||||
CFLAGS=-g -I. #-I/usr/lib/mpi/include -L/usr/lib/mpi/lib
|
||||
CFLAGS=-g -I.
|
||||
#CFLAGS=-D __gnu_cxx=std -g -I. #-I/usr/lib/mpi/include -L/usr/lib/mpi/lib
|
||||
LIBS=
|
||||
|
||||
MPICC=g++
|
||||
#kMPICC=./mpiCC
|
||||
#MPICC=mpiCC
|
||||
MPICFLAGS=${CFLAGS} -I/usr/lib/mpi/include -L/usr/lib/mpi/mpi_gnu/lib
|
||||
MPILIBS= -lelan -lmpi ${LIBS}
|
||||
|
||||
|
@ -6,6 +6,7 @@
|
||||
#include <string>
|
||||
#include <fstream>
|
||||
using namespace std;
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
class LogType {
|
||||
protected:
|
||||
|
@ -2,11 +2,13 @@
|
||||
#define __LOGGER_H
|
||||
|
||||
#include "types.h"
|
||||
#include <ext/hash_map>
|
||||
#include <string>
|
||||
#include <fstream>
|
||||
using namespace std;
|
||||
|
||||
#include <ext/hash_map>
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
class LogType;
|
||||
class Logger {
|
||||
protected:
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include <iostream>
|
||||
#include <ext/rope>
|
||||
using namespace std;
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
class filepath {
|
||||
string path;
|
||||
|
@ -9,14 +9,16 @@
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
|
||||
#include <ext/rope>
|
||||
#include <list>
|
||||
#include <set>
|
||||
#include <map>
|
||||
#include <ext/hash_map>
|
||||
#include <string>
|
||||
using namespace std;
|
||||
|
||||
#include <ext/rope>
|
||||
#include <ext/hash_map>
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
class CInode;
|
||||
class CDentry;
|
||||
class MDS;
|
||||
|
@ -16,10 +16,12 @@
|
||||
#include <vector>
|
||||
#include <set>
|
||||
#include <map>
|
||||
#include <ext/rope>
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
#include <ext/rope>
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
|
||||
// crap
|
||||
/*
|
||||
|
@ -3,9 +3,12 @@
|
||||
|
||||
#include <assert.h>
|
||||
#include <set>
|
||||
#include <ext/rope>
|
||||
using namespace std;
|
||||
|
||||
#include <ext/rope>
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
|
||||
// STATES
|
||||
// basic lock
|
||||
#define LOCK_SYNC 0
|
||||
|
@ -2,9 +2,10 @@
|
||||
#define __LOGSTREAM_H
|
||||
|
||||
#include "include/types.h"
|
||||
#include "../include/Context.h"
|
||||
#include "include/Context.h"
|
||||
|
||||
#include <ext/rope>
|
||||
using namespace std;
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
class LogEvent;
|
||||
class MDS;
|
||||
|
@ -2,10 +2,12 @@
|
||||
#define __MDBALANCER_H
|
||||
|
||||
#include <ostream>
|
||||
#include <ext/hash_map>
|
||||
#include <list>
|
||||
using namespace std;
|
||||
|
||||
#include <ext/hash_map>
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
#include "include/types.h"
|
||||
|
||||
class MDS;
|
||||
|
@ -33,8 +33,9 @@
|
||||
#include "events/EInodeUpdate.h"
|
||||
#include "events/EInodeUnlink.h"
|
||||
|
||||
#include <list>
|
||||
#include <errno.h>
|
||||
|
||||
#include <list>
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
|
@ -3,11 +3,14 @@
|
||||
#define __MDS_H
|
||||
|
||||
#include <list>
|
||||
#include <ext/hash_map>
|
||||
#include <vector>
|
||||
#include <set>
|
||||
#include <ostream>
|
||||
using namespace std;
|
||||
|
||||
#include <ext/hash_map>
|
||||
#include <ext/rope>
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
#include "msg/Dispatcher.h"
|
||||
#include "include/types.h"
|
||||
@ -17,7 +20,6 @@
|
||||
|
||||
typedef __uint64_t object_t;
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
#define MDS_PORT_MAIN 1
|
||||
|
@ -3,9 +3,11 @@
|
||||
#define __MDSTORE_H
|
||||
|
||||
#include "include/types.h"
|
||||
#include <ext/rope>
|
||||
using namespace std;
|
||||
|
||||
#include <ext/rope>
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
class MDS;
|
||||
class CDir;
|
||||
class Context;
|
||||
|
@ -1,6 +1,4 @@
|
||||
|
||||
#include "include/config.h"
|
||||
using namespace std;
|
||||
|
||||
|
||||
#include "Message.h"
|
||||
@ -9,6 +7,8 @@ using namespace std;
|
||||
#include "include/LogType.h"
|
||||
#include "include/Logger.h"
|
||||
|
||||
#include "include/config.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <map>
|
||||
@ -16,6 +16,7 @@ using namespace std;
|
||||
#include <cassert>
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
|
||||
|
@ -90,11 +90,13 @@ typedef int msg_addr_t;
|
||||
((x)-(g_conf.num_mds+g_conf.num_osd))))
|
||||
#define MSG_ADDR_NICE(x) MSG_ADDR_TYPE(x) << MSG_ADDR_NUM(x)
|
||||
|
||||
#include <iostream>
|
||||
#include <stdlib.h>
|
||||
#include <ext/rope>
|
||||
#include <cassert>
|
||||
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
#include <ext/rope>
|
||||
using namespace __gnu_cxx;
|
||||
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include <sys/file.h>
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
#include <errno.h>
|
||||
|
||||
#include "include/config.h"
|
||||
#undef dout
|
||||
|
Loading…
Reference in New Issue
Block a user