diff options
author | Craig Rodrigues <rodrigc@FreeBSD.org> | 2007-02-11 13:54:25 +0000 |
---|---|---|
committer | Craig Rodrigues <rodrigc@FreeBSD.org> | 2007-02-11 13:54:25 +0000 |
commit | a8d36d0d9a684f578ea536a64391d13b744056ac (patch) | |
tree | ff1d9118b7072715f302a78c66c6a215d497c3e3 | |
parent | 6c7ef9a0f80e5acc40e33930d24884cb1604d7de (diff) | |
download | src-a8d36d0d9a684f578ea536a64391d13b744056ac.tar.gz src-a8d36d0d9a684f578ea536a64391d13b744056ac.zip |
Forced commit and #include changes for repo copy from
sys/isofs/cd9660 to sys/fs/cd9660.
Discussed on freebsd-current.
Notes
Notes:
svn path=/head/; revision=166639
-rw-r--r-- | sys/fs/cd9660/cd9660_bmap.c | 4 | ||||
-rw-r--r-- | sys/fs/cd9660/cd9660_lookup.c | 6 | ||||
-rw-r--r-- | sys/fs/cd9660/cd9660_node.c | 6 | ||||
-rw-r--r-- | sys/fs/cd9660/cd9660_rrip.c | 8 | ||||
-rw-r--r-- | sys/fs/cd9660/cd9660_util.c | 4 | ||||
-rw-r--r-- | sys/fs/cd9660/cd9660_vfsops.c | 8 | ||||
-rw-r--r-- | sys/fs/cd9660/cd9660_vnops.c | 6 |
7 files changed, 21 insertions, 21 deletions
diff --git a/sys/fs/cd9660/cd9660_bmap.c b/sys/fs/cd9660/cd9660_bmap.c index 147f4457b85b..57345011efb0 100644 --- a/sys/fs/cd9660/cd9660_bmap.c +++ b/sys/fs/cd9660/cd9660_bmap.c @@ -42,8 +42,8 @@ __FBSDID("$FreeBSD$"); #include <sys/vnode.h> #include <sys/mount.h> -#include <isofs/cd9660/iso.h> -#include <isofs/cd9660/cd9660_node.h> +#include <fs/cd9660/iso.h> +#include <fs/cd9660/cd9660_node.h> /* * Bmap converts a the logical block number of a file to its physical block diff --git a/sys/fs/cd9660/cd9660_lookup.c b/sys/fs/cd9660/cd9660_lookup.c index 59607b916f33..3d177c441f13 100644 --- a/sys/fs/cd9660/cd9660_lookup.c +++ b/sys/fs/cd9660/cd9660_lookup.c @@ -46,9 +46,9 @@ __FBSDID("$FreeBSD$"); #include <sys/vnode.h> #include <sys/mount.h> -#include <isofs/cd9660/iso.h> -#include <isofs/cd9660/cd9660_node.h> -#include <isofs/cd9660/iso_rrip.h> +#include <fs/cd9660/iso.h> +#include <fs/cd9660/cd9660_node.h> +#include <fs/cd9660/iso_rrip.h> /* * Convert a component of a pathname into a pointer to a locked inode. diff --git a/sys/fs/cd9660/cd9660_node.c b/sys/fs/cd9660/cd9660_node.c index 69e1043cba3c..9f9f1b6dc5e0 100644 --- a/sys/fs/cd9660/cd9660_node.c +++ b/sys/fs/cd9660/cd9660_node.c @@ -47,9 +47,9 @@ __FBSDID("$FreeBSD$"); #include <sys/stat.h> #include <sys/mutex.h> -#include <isofs/cd9660/iso.h> -#include <isofs/cd9660/cd9660_node.h> -#include <isofs/cd9660/cd9660_mount.h> +#include <fs/cd9660/iso.h> +#include <fs/cd9660/cd9660_node.h> +#include <fs/cd9660/cd9660_mount.h> static unsigned cd9660_chars2ui(unsigned char *begin, int len); diff --git a/sys/fs/cd9660/cd9660_rrip.c b/sys/fs/cd9660/cd9660_rrip.c index 0b9b1b58e283..c3c8027d3cd7 100644 --- a/sys/fs/cd9660/cd9660_rrip.c +++ b/sys/fs/cd9660/cd9660_rrip.c @@ -45,10 +45,10 @@ __FBSDID("$FreeBSD$"); #include <sys/mount.h> #include <sys/kernel.h> -#include <isofs/cd9660/iso.h> -#include <isofs/cd9660/cd9660_node.h> -#include <isofs/cd9660/cd9660_rrip.h> -#include <isofs/cd9660/iso_rrip.h> +#include <fs/cd9660/iso.h> +#include <fs/cd9660/cd9660_node.h> +#include <fs/cd9660/cd9660_rrip.h> +#include <fs/cd9660/iso_rrip.h> typedef int rrt_func_t(void *, ISO_RRIP_ANALYZE *ana); diff --git a/sys/fs/cd9660/cd9660_util.c b/sys/fs/cd9660/cd9660_util.c index 1922627a0dad..5372c759b1d4 100644 --- a/sys/fs/cd9660/cd9660_util.c +++ b/sys/fs/cd9660/cd9660_util.c @@ -44,8 +44,8 @@ __FBSDID("$FreeBSD$"); #include <sys/vnode.h> #include <sys/iconv.h> -#include <isofs/cd9660/iso.h> -#include <isofs/cd9660/cd9660_mount.h> +#include <fs/cd9660/iso.h> +#include <fs/cd9660/cd9660_mount.h> extern struct iconv_functions *cd9660_iconv; diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index 58f2addc657b..8f94c6a5b332 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -55,10 +55,10 @@ __FBSDID("$FreeBSD$"); #include <sys/syslog.h> #include <sys/iconv.h> -#include <isofs/cd9660/iso.h> -#include <isofs/cd9660/iso_rrip.h> -#include <isofs/cd9660/cd9660_node.h> -#include <isofs/cd9660/cd9660_mount.h> +#include <fs/cd9660/iso.h> +#include <fs/cd9660/iso_rrip.h> +#include <fs/cd9660/cd9660_node.h> +#include <fs/cd9660/cd9660_mount.h> #include <geom/geom.h> #include <geom/geom_vfs.h> diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c index 3e670002a2ee..1cbfaeef2320 100644 --- a/sys/fs/cd9660/cd9660_vnops.c +++ b/sys/fs/cd9660/cd9660_vnops.c @@ -57,9 +57,9 @@ __FBSDID("$FreeBSD$"); #include <vm/vnode_pager.h> #include <vm/uma.h> -#include <isofs/cd9660/iso.h> -#include <isofs/cd9660/cd9660_node.h> -#include <isofs/cd9660/iso_rrip.h> +#include <fs/cd9660/iso.h> +#include <fs/cd9660/cd9660_node.h> +#include <fs/cd9660/iso_rrip.h> static vop_setattr_t cd9660_setattr; static vop_open_t cd9660_open; |