Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

freevxfs: update documentation and cresdits for HP-UX support

Signed-off-by: Krzysztof Błaszkowski <kb@sysmikro.com.pl>
[hch: cosmetic updates]
Signed-off-by: Christoph Hellwig <hch@lst.de>

authored by

Krzysztof Błaszkowski and committed by
Christoph Hellwig
1cce1701 2f137e31

+17 -2
+9 -1
fs/freevxfs/Kconfig
··· 5 5 FreeVxFS is a file system driver that support the VERITAS VxFS(TM) 6 6 file system format. VERITAS VxFS(TM) is the standard file system 7 7 of SCO UnixWare (and possibly others) and optionally available 8 - for Sunsoft Solaris, HP-UX and many other operating systems. 8 + for Sunsoft Solaris, HP-UX and many other operating systems. However 9 + these particular OS implementations of vxfs may differ in on-disk 10 + data endianess and/or superblock offset. The vxfs module has been 11 + tested with SCO UnixWare and HP-UX B.10.20 (pa-risc 1.1 arch.) 9 12 Currently only readonly access is supported. 10 13 11 14 NOTE: the file system type as used by mount(1), mount(2) and 12 15 fstab(5) is 'vxfs' as it describes the file system format, not 13 16 the actual driver. 17 + 18 + There is a userspace utility for HP-UX logical volumes which makes 19 + creating HP-UX logical volumes easy from HP-UX disk block device file 20 + or regular file with image of the disk. See: 21 + https://sourceforge.net/projects/linux-vxfs/ 14 22 15 23 To compile this as a module, choose M here: the module will be 16 24 called freevxfs. If unsure, say N.
+1
fs/freevxfs/vxfs.h
··· 1 1 /* 2 2 * Copyright (c) 2000-2001 Christoph Hellwig. 3 + * Copyright (c) 2016 Krzysztof Blaszkowski 3 4 * All rights reserved. 4 5 * 5 6 * Redistribution and use in source and binary forms, with or without
+1
fs/freevxfs/vxfs_fshead.c
··· 1 1 /* 2 2 * Copyright (c) 2000-2001 Christoph Hellwig. 3 + * Copyright (c) 2016 Krzysztof Blaszkowski 3 4 * All rights reserved. 4 5 * 5 6 * Redistribution and use in source and binary forms, with or without
+1
fs/freevxfs/vxfs_fshead.h
··· 1 1 /* 2 2 * Copyright (c) 2000-2001 Christoph Hellwig. 3 + * Copyright (c) 2016 Krzysztof Blaszkowski 3 4 * All rights reserved. 4 5 * 5 6 * Redistribution and use in source and binary forms, with or without
+1
fs/freevxfs/vxfs_inode.c
··· 1 1 /* 2 2 * Copyright (c) 2000-2001 Christoph Hellwig. 3 + * Copyright (c) 2016 Krzysztof Blaszkowski 3 4 * All rights reserved. 4 5 * 5 6 * Redistribution and use in source and binary forms, with or without
+1
fs/freevxfs/vxfs_inode.h
··· 1 1 /* 2 2 * Copyright (c) 2000-2001 Christoph Hellwig. 3 + * Copyright (c) 2016 Krzysztof Blaszkowski 3 4 * All rights reserved. 4 5 * 5 6 * Redistribution and use in source and binary forms, with or without
+1
fs/freevxfs/vxfs_lookup.c
··· 1 1 /* 2 2 * Copyright (c) 2000-2001 Christoph Hellwig. 3 + * Copyright (c) 2016 Krzysztof Blaszkowski 3 4 * All rights reserved. 4 5 * 5 6 * Redistribution and use in source and binary forms, with or without
+2 -1
fs/freevxfs/vxfs_super.c
··· 1 1 /* 2 2 * Copyright (c) 2000-2001 Christoph Hellwig. 3 + * Copyright (c) 2016 Krzysztof Blaszkowski 3 4 * All rights reserved. 4 5 * 5 6 * Redistribution and use in source and binary forms, with or without ··· 49 48 #include "vxfs_inode.h" 50 49 51 50 52 - MODULE_AUTHOR("Christoph Hellwig"); 51 + MODULE_AUTHOR("Christoph Hellwig, Krzysztof Blaszkowski"); 53 52 MODULE_DESCRIPTION("Veritas Filesystem (VxFS) driver"); 54 53 MODULE_LICENSE("Dual BSD/GPL"); 55 54