cd9660_vnops.c (c6e3ae999b200e6c05b8a22f893bbd5d662e63b9) | cd9660_vnops.c (f5b11b6e2ddb88980c24cb32a5bbb1853397b3e5) |
---|---|
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). --- 717 unchanged lines hidden (view full) --- 726 clrbuf(bp); 727 } 728 if ((long)bp->b_blkno == -1) { /* XXX: cut&paste junk ? */ 729 bufdone(bp); 730 return (0); 731 } 732 vp = ip->i_devvp; 733 bp->b_dev = vp->v_rdev; | 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). --- 717 unchanged lines hidden (view full) --- 726 clrbuf(bp); 727 } 728 if ((long)bp->b_blkno == -1) { /* XXX: cut&paste junk ? */ 729 bufdone(bp); 730 return (0); 731 } 732 vp = ip->i_devvp; 733 bp->b_dev = vp->v_rdev; |
734 VOP_STRATEGY(vp, bp); | 734 VOP_SPECSTRATEGY(vp, bp); |
735 return (0); 736} 737 738/* 739 * Return POSIX pathconf information applicable to cd9660 filesystems. 740 */ 741static int 742cd9660_pathconf(ap) --- 95 unchanged lines hidden --- | 735 return (0); 736} 737 738/* 739 * Return POSIX pathconf information applicable to cd9660 filesystems. 740 */ 741static int 742cd9660_pathconf(ap) --- 95 unchanged lines hidden --- |