1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _ADFS_FS_H 2 #ifndef _ADFS_FS_H 3 #define _ADFS_FS_H 3 #define _ADFS_FS_H 4 4 5 #include <uapi/linux/adfs_fs.h> 5 #include <uapi/linux/adfs_fs.h> 6 6 7 /* 7 /* 8 * Calculate the boot block checksum on an ADF 8 * Calculate the boot block checksum on an ADFS drive. Note that this will 9 * appear to be correct if the sector contains 9 * appear to be correct if the sector contains all zeros, so also check that 10 * the disk size is non-zero!!! 10 * the disk size is non-zero!!! 11 */ 11 */ 12 static inline int adfs_checkbblk(unsigned char 12 static inline int adfs_checkbblk(unsigned char *ptr) 13 { 13 { 14 unsigned int result = 0; 14 unsigned int result = 0; 15 unsigned char *p = ptr + 511; 15 unsigned char *p = ptr + 511; 16 16 17 do { 17 do { 18 result = (result & 0xff) + (re 18 result = (result & 0xff) + (result >> 8); 19 result = result + *--p; 19 result = result + *--p; 20 } while (p != ptr); 20 } while (p != ptr); 21 21 22 return (result & 0xff) != ptr[511]; 22 return (result & 0xff) != ptr[511]; 23 } 23 } 24 #endif 24 #endif 25 25
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.