Deleted Added
full compact
cd9660_rrip.c (128019) cd9660_rrip.c (130640)
1/*-
2 * Copyright (c) 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley
6 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
7 * Support code is derived from software contributed to Berkeley
8 * by Atsushi Murai (amurai@spec.co.jp).

--- 21 unchanged lines hidden (view full) ---

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)cd9660_rrip.c 8.6 (Berkeley) 12/5/94
35 */
36
37#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley
6 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
7 * Support code is derived from software contributed to Berkeley
8 * by Atsushi Murai (amurai@spec.co.jp).

--- 21 unchanged lines hidden (view full) ---

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)cd9660_rrip.c 8.6 (Berkeley) 12/5/94
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_rrip.c 128019 2004-04-07 20:46:16Z imp $");
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_rrip.c 130640 2004-06-17 17:16:53Z phk $");
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/bio.h>
43#include <sys/buf.h>
44#include <sys/vnode.h>
45#include <sys/mount.h>
46#include <sys/kernel.h>

--- 361 unchanged lines hidden (view full) ---

408 ISO_RRIP_ANALYZE *ana;
409{
410 u_int high, low;
411
412 high = isonum_733(p->dev_t_high);
413 low = isonum_733(p->dev_t_low);
414
415 if (high == 0)
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/bio.h>
43#include <sys/buf.h>
44#include <sys/vnode.h>
45#include <sys/mount.h>
46#include <sys/kernel.h>

--- 361 unchanged lines hidden (view full) ---

408 ISO_RRIP_ANALYZE *ana;
409{
410 u_int high, low;
411
412 high = isonum_733(p->dev_t_high);
413 low = isonum_733(p->dev_t_low);
414
415 if (high == 0)
416 ana->inop->inode.iso_rdev = makeudev(umajor(low), uminor(low));
416 ana->inop->inode.iso_rdev = makedev(umajor(low), uminor(low));
417 else
417 else
418 ana->inop->inode.iso_rdev = makeudev(high, uminor(low));
418 ana->inop->inode.iso_rdev = makedev(high, uminor(low));
419 ana->fields &= ~ISO_SUSP_DEVICE;
420 return ISO_SUSP_DEVICE;
421}
422
423/*
424 * Flag indicating
425 */
426static int

--- 291 unchanged lines hidden ---
419 ana->fields &= ~ISO_SUSP_DEVICE;
420 return ISO_SUSP_DEVICE;
421}
422
423/*
424 * Flag indicating
425 */
426static int

--- 291 unchanged lines hidden ---