udf_vnops.c (c6e3ae999b200e6c05b8a22f893bbd5d662e63b9) udf_vnops.c (f5b11b6e2ddb88980c24cb32a5bbb1853397b3e5)
1/*-
2 * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

823 }
824 }
825 if ((long)bp->b_blkno == -1) {
826 bufdone(bp);
827 return (0);
828 }
829 vp = node->i_devvp;
830 bp->b_dev = vp->v_rdev;
1/*-
2 * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

823 }
824 }
825 if ((long)bp->b_blkno == -1) {
826 bufdone(bp);
827 return (0);
828 }
829 vp = node->i_devvp;
830 bp->b_dev = vp->v_rdev;
831 VOP_STRATEGY(vp, bp);
831 VOP_SPECSTRATEGY(vp, bp);
832 return (0);
833}
834
835static int
836udf_print(struct vop_print_args *a)
837{
838 printf("%s called\n", __FUNCTION__);
839 return (EOPNOTSUPP);

--- 362 unchanged lines hidden ---
832 return (0);
833}
834
835static int
836udf_print(struct vop_print_args *a)
837{
838 printf("%s called\n", __FUNCTION__);
839 return (EOPNOTSUPP);

--- 362 unchanged lines hidden ---