taglinefilesource code
h310fs/buffer.cstruct buffer_head * h = start_buffer;
h318fs/buffer.cwhile ( (b -= BLOCK_SIZE) >= ((void *) (h+1)) ) {
h319fs/buffer.ch->b_dev = 0;
h320fs/buffer.ch->b_dirt = 0;
h321fs/buffer.ch->b_count = 0;
h322fs/buffer.ch->b_lock = 0;
h323fs/buffer.ch->b_uptodate = 0;
h324fs/buffer.ch->b_wait = NULL;
h325fs/buffer.ch->b_next = NULL;
h326fs/buffer.ch->b_prev = NULL;
h327fs/buffer.ch->b_data = (char *) b;
h328fs/buffer.ch->b_prev_free = h-1;
h329fs/buffer.ch->b_next_free = h+1;
h330fs/buffer.ch++;
h335fs/buffer.ch--;
h337fs/buffer.cfree_list->b_prev_free = h;
h338fs/buffer.ch->b_next_free = free_list;
h28init/main.c#include <linux/tty.h>
h29init/main.c#include <linux/sched.h>
h30init/main.c#include <linux/head.h>
h31init/main.c#include <asm/system.h>
h32init/main.c#include <asm/io.h>
h34init/main.c#include <stddef.h>
h35init/main.c#include <stdarg.h>
h36init/main.c#include <unistd.h>
h37init/main.c#include <fcntl.h>
h38init/main.c#include <sys/types.h>
h40init/main.c#include <linux/fs.h>