resize.c (a8a4b79b53fc7cbb023afedf58b04dd4e9bbb114) | resize.c (f466c6fdb3b1f043ff1977a8d2a1d0cd4dc164fa) |
---|---|
1/* 2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README 3 */ 4 5/* 6 * Written by Alexander Zarochentcev. 7 * 8 * The kernel part of the (on-line) reiserfs resizer. 9 */ 10 11#include <linux/kernel.h> 12#include <linux/mm.h> 13#include <linux/vmalloc.h> 14#include <linux/string.h> 15#include <linux/errno.h> | 1/* 2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README 3 */ 4 5/* 6 * Written by Alexander Zarochentcev. 7 * 8 * The kernel part of the (on-line) reiserfs resizer. 9 */ 10 11#include <linux/kernel.h> 12#include <linux/mm.h> 13#include <linux/vmalloc.h> 14#include <linux/string.h> 15#include <linux/errno.h> |
16#include <linux/reiserfs_fs.h> | 16#include "reiserfs.h" |
17#include <linux/buffer_head.h> 18 19int reiserfs_resize(struct super_block *s, unsigned long block_count_new) 20{ 21 int err = 0; 22 struct reiserfs_super_block *sb; 23 struct reiserfs_bitmap_info *bitmap; 24 struct reiserfs_bitmap_info *info; --- 185 unchanged lines hidden --- | 17#include <linux/buffer_head.h> 18 19int reiserfs_resize(struct super_block *s, unsigned long block_count_new) 20{ 21 int err = 0; 22 struct reiserfs_super_block *sb; 23 struct reiserfs_bitmap_info *bitmap; 24 struct reiserfs_bitmap_info *info; --- 185 unchanged lines hidden --- |