zfs.c (e183de0d3efccd77b4a7b9d1395a9f29bba68e26) | zfs.c (4101f6879256720b30df712089a3df18565f9203) |
---|---|
1/* 2 * 3 * ZFS filesystem ported to u-boot by 4 * Jorgen Lundman <lundman at lundman.net> 5 * 6 * GRUB -- GRand Unified Bootloader 7 * Copyright (C) 1999,2000,2001,2002,2003,2004 8 * Free Software Foundation, Inc. --- 6 unchanged lines hidden (view full) --- 15#include <malloc.h> 16#include <linux/stat.h> 17#include <linux/time.h> 18#include <linux/ctype.h> 19#include <asm/byteorder.h> 20#include "zfs_common.h" 21#include "div64.h" 22 | 1/* 2 * 3 * ZFS filesystem ported to u-boot by 4 * Jorgen Lundman <lundman at lundman.net> 5 * 6 * GRUB -- GRand Unified Bootloader 7 * Copyright (C) 1999,2000,2001,2002,2003,2004 8 * Free Software Foundation, Inc. --- 6 unchanged lines hidden (view full) --- 15#include <malloc.h> 16#include <linux/stat.h> 17#include <linux/time.h> 18#include <linux/ctype.h> 19#include <asm/byteorder.h> 20#include "zfs_common.h" 21#include "div64.h" 22 |
23block_dev_desc_t *zfs_dev_desc; | 23struct blk_desc *zfs_dev_desc; |
24 25/* 26 * The zfs plug-in routines for GRUB are: 27 * 28 * zfs_mount() - locates a valid uberblock of the root pool and reads 29 * in its MOS at the memory address MOS. 30 * 31 * zfs_open() - locates a plain file object by following the MOS --- 2310 unchanged lines hidden --- | 24 25/* 26 * The zfs plug-in routines for GRUB are: 27 * 28 * zfs_mount() - locates a valid uberblock of the root pool and reads 29 * in its MOS at the memory address MOS. 30 * 31 * zfs_open() - locates a plain file object by following the MOS --- 2310 unchanged lines hidden --- |