Skip to content

Commit d9f1317

Browse files
chrismason-xxDavid Woodhouse
authored and
David Woodhouse
committedJun 12, 2007
add GPLv2
1 parent 9ea6a6f commit d9f1317

32 files changed

+896
-27
lines changed
 

‎COPYING

+356
Large diffs are not rendered by default.

‎TODO

-27
This file was deleted.

‎bit-radix.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include "kerncompat.h"
220
#include "radix-tree.h"
321

‎bit-radix.h

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#ifndef __BIT_RADIX__
220
#define __BIT_RADIX__
321
#include "radix-tree.h"

‎btrfsck.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#define _XOPEN_SOURCE 500
220
#include <stdio.h>
321
#include <stdlib.h>

‎btrfsctl.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#ifndef __CHECKER__
220
#include <sys/ioctl.h>
321
#include <sys/mount.h>

‎ctree.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include "kerncompat.h"

‎ctree.h

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#ifndef __BTRFS__
220
#define __BTRFS__
321

‎debug-tree.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include <uuid/uuid.h>

‎dir-item.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include "kerncompat.h"

‎dir-test.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include <signal.h>

‎disk-io.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#define _XOPEN_SOURCE 600
220
#define __USE_XOPEN2K
321
#include <stdio.h>

‎disk-io.h

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#ifndef __DISKIO__
220
#define __DISKIO__
321
#include "list.h"

‎extent-tree.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include "kerncompat.h"

‎file-item.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include "kerncompat.h"

‎hash.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
/*
220
* Original copy from:
321
* linux/fs/ext3/hash.c

‎hash.h

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#ifndef __HASH__
220
#define __HASH__
321
int btrfs_name_hash(const char *name, int len, u64 *hash_result);

‎hasher.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include <string.h>

‎inode-item.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include "kerncompat.h"

‎inode-map.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include "kerncompat.h"

‎ioctl.h

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#ifndef __IOCTL_
220
#define __IOCTL_
321
#include <linux/ioctl.h>

‎kerncompat.h

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#ifndef __KERNCOMPAT
220
#define __KERNCOMPAT
321

‎list.h

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#ifndef _LINUX_LIST_H
220
#define _LINUX_LIST_H
321

‎mkfs.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#define _XOPEN_SOURCE 500
220
#ifndef __CHECKER__
321
#include <sys/ioctl.h>

‎print-tree.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include "kerncompat.h"

‎print-tree.h

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#ifndef __PRINT_TREE_
220
#define __PRINT_TREE_
321
void btrfs_print_leaf(struct btrfs_root *root, struct btrfs_leaf *l);

‎quick-test.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include "kerncompat.h"

‎radix-tree.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
/*
220
* Copyright (C) 2001 Momchil Velikov
321
* Portions Copyright (C) 2001 Christoph Hellwig

‎radix-tree.h

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
/*
220
* Copyright (C) 2001 Momchil Velikov
321
* Portions Copyright (C) 2001 Christoph Hellwig

‎random-test.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include <signal.h>

‎root-tree.c

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#include <stdio.h>
220
#include <stdlib.h>
321
#include "kerncompat.h"

‎transaction.h

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2007 Oracle. All rights reserved.
3+
*
4+
* This program is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU General Public
6+
* License v2 as published by the Free Software Foundation.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
* General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public
14+
* License along with this program; if not, write to the
15+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16+
* Boston, MA 021110-1307, USA.
17+
*/
18+
119
#ifndef __TRANSACTION__
220
#define __TRANSACTION__
321

0 commit comments

Comments
 (0)
Please sign in to comment.