Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
62 lines
1.0 KiB
C
62 lines
1.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* linux/fs/adfs/dir_f.h
|
|
*
|
|
* Copyright (C) 1999 Russell King
|
|
*
|
|
* Structures of directories on the F format disk
|
|
*/
|
|
#ifndef ADFS_DIR_F_H
|
|
#define ADFS_DIR_F_H
|
|
|
|
/*
|
|
* Directory header
|
|
*/
|
|
struct adfs_dirheader {
|
|
__u8 startmasseq;
|
|
__u8 startname[4];
|
|
} __attribute__((packed));
|
|
|
|
#define ADFS_NEWDIR_SIZE 2048
|
|
#define ADFS_NUM_DIR_ENTRIES 77
|
|
|
|
/*
|
|
* Directory entries
|
|
*/
|
|
struct adfs_direntry {
|
|
#define ADFS_F_NAME_LEN 10
|
|
char dirobname[ADFS_F_NAME_LEN];
|
|
__u8 dirload[4];
|
|
__u8 direxec[4];
|
|
__u8 dirlen[4];
|
|
__u8 dirinddiscadd[3];
|
|
__u8 newdiratts;
|
|
} __attribute__((packed));
|
|
|
|
/*
|
|
* Directory tail
|
|
*/
|
|
struct adfs_olddirtail {
|
|
__u8 dirlastmask;
|
|
char dirname[10];
|
|
__u8 dirparent[3];
|
|
char dirtitle[19];
|
|
__u8 reserved[14];
|
|
__u8 endmasseq;
|
|
__u8 endname[4];
|
|
__u8 dircheckbyte;
|
|
} __attribute__((packed));
|
|
|
|
struct adfs_newdirtail {
|
|
__u8 dirlastmask;
|
|
__u8 reserved[2];
|
|
__u8 dirparent[3];
|
|
char dirtitle[19];
|
|
char dirname[10];
|
|
__u8 endmasseq;
|
|
__u8 endname[4];
|
|
__u8 dircheckbyte;
|
|
} __attribute__((packed));
|
|
|
|
#endif
|