/* * linux/fs/adfs/dir_f.h * * Copyright (C) 1999 Russell King * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Structures of directories on the F format disk */ #ifndef ADFS_DIR_F_H #define ADFS_DIR_F_H /* * Directory header */ struct adfs_dirheader { unsigned char startmasseq; unsigned char startname[4]; }; #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; }; /* * Directory tail */ union adfs_dirtail { struct { unsigned char dirlastmask; char dirname[10]; unsigned char dirparent[3]; char dirtitle[19]; unsigned char reserved[14]; unsigned char endmasseq; unsigned char endname[4]; unsigned char dircheckbyte; } old; struct { unsigned char dirlastmask; unsigned char reserved[2]; unsigned char dirparent[3]; char dirtitle[19]; char dirname[10]; unsigned char endmasseq; unsigned char endname[4]; unsigned char dircheckbyte; } new; }; #endif ion value='packet-loop-back'>packet-loop-back net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/mac802154
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-18 11:13:41 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-18 11:13:41 -0800
commitca92e6c7e6329029d7188487a5c32e86ef471977 (patch)
tree704fb5c2ca533cdb569826522eed0dbbcf31f316 /net/mac802154
parent0b75f821ec8be459dd4dec77be39595d989d77ac (diff)
parent4205e4786d0b9fc3b4fec7b1910cf645a0468307 (diff)
Merge branch 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull SMP hotplug update from Thomas Gleixner: "This contains a trivial typo fix and an extension to the core code for dynamically allocating states in the prepare stage. The extension is necessary right now because we need a proper way to unbreak LTTNG, which iscurrently non functional due to the removal of the notifiers. Surely it's out of tree, but it's widely used by distros. The simple solution would have been to reserve a state for LTTNG, but I'm not fond about unused crap in the kernel and the dynamic range, which we admittedly should have done right away, allows us to remove quite some of the hardcoded states, i.e. those which have no ordering requirements. So doing the right thing now is better than having an smaller intermediate solution which needs to be reworked anyway" * 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: cpu/hotplug: Provide dynamic range for prepare stage perf/x86/amd/ibs: Fix typo after cleanup state names in cpu/hotplug
Diffstat (limited to 'net/mac802154')