Deleted Added
full compact
cd9660_vnops.c (138290) cd9660_vnops.c (140051)
1/*-
2 * Copyright (c) 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_vnops.c 8.19 (Berkeley) 5/27/95
35 */
36
37#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 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_vnops.c 8.19 (Berkeley) 5/27/95
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vnops.c 138290 2004-12-01 23:16:38Z phk $");
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vnops.c 140051 2005-01-11 09:10:46Z phk $");
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/namei.h>
43#include <sys/kernel.h>
44#include <sys/stat.h>
45#include <sys/bio.h>
46#include <sys/buf.h>

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

728 clrbuf(bp);
729 }
730 if ((long)bp->b_blkno == -1) { /* XXX: cut&paste junk ? */
731 bufdone(bp);
732 return (0);
733 }
734 bp->b_iooffset = dbtob(bp->b_blkno);
735 bo = ip->i_mnt->im_bo;
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/namei.h>
43#include <sys/kernel.h>
44#include <sys/stat.h>
45#include <sys/bio.h>
46#include <sys/buf.h>

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

728 clrbuf(bp);
729 }
730 if ((long)bp->b_blkno == -1) { /* XXX: cut&paste junk ? */
731 bufdone(bp);
732 return (0);
733 }
734 bp->b_iooffset = dbtob(bp->b_blkno);
735 bo = ip->i_mnt->im_bo;
736 bo->bo_ops->bop_strategy(bo, bp);
736 BO_STRATEGY(bo, bp);
737 return (0);
738}
739
740/*
741 * Return POSIX pathconf information applicable to cd9660 filesystems.
742 */
743static int
744cd9660_pathconf(ap)

--- 68 unchanged lines hidden ---
737 return (0);
738}
739
740/*
741 * Return POSIX pathconf information applicable to cd9660 filesystems.
742 */
743static int
744cd9660_pathconf(ap)

--- 68 unchanged lines hidden ---