[BACK]Return to cd9660_lookup.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / fs / cd9660

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/fs/cd9660/cd9660_lookup.c between version 1.14 and 1.14.14.2

version 1.14, 2007/11/26 19:01:42 version 1.14.14.2, 2008/06/02 13:24:04
Line 92  struct nchstats iso_nchstats;
Line 92  struct nchstats iso_nchstats;
  *        nor deleting, add name to cache   *        nor deleting, add name to cache
  */   */
 int  int
 cd9660_lookup(v)  cd9660_lookup(void *v)
         void *v;  
 {  {
         struct vop_lookup_args /* {          struct vop_lookup_args /* {
                 struct vnode *a_dvp;                  struct vnode *a_dvp;
Line 427  cd9660_blkatoff(struct vnode *vp, off_t 
Line 426  cd9660_blkatoff(struct vnode *vp, off_t 
         lbn = lblkno(imp, offset);          lbn = lblkno(imp, offset);
         bsize = blksize(imp, ip, lbn);          bsize = blksize(imp, ip, lbn);
   
         if ((error = bread(vp, lbn, bsize, NOCRED, &bp)) != 0) {          if ((error = bread(vp, lbn, bsize, NOCRED, 0, &bp)) != 0) {
                 brelse(bp, 0);                  brelse(bp, 0);
                 *bpp = NULL;                  *bpp = NULL;
                 return (error);                  return (error);

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.14.14.2

CVSweb <webmaster@jp.NetBSD.org>