|
Last change
on this file was
2,
checked in by jglee, 11 years ago
|
|
first commit
|
-
Property svn:executable set to
*
|
|
File size:
923 bytes
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | * udf_fs_sb.h |
|---|
| 3 | * |
|---|
| 4 | * This include file is for the Linux kernel/module. |
|---|
| 5 | * |
|---|
| 6 | * CONTACTS |
|---|
| 7 | * E-mail regarding any portion of the Linux UDF file system should be |
|---|
| 8 | * directed to the development team mailing list (run by majordomo): |
|---|
| 9 | * linux_udf@hpesjro.fc.hp.com |
|---|
| 10 | * |
|---|
| 11 | * COPYRIGHT |
|---|
| 12 | * This file is distributed under the terms of the GNU General Public |
|---|
| 13 | * License (GPL). Copies of the GPL can be obtained from: |
|---|
| 14 | * ftp://prep.ai.mit.edu/pub/gnu/GPL |
|---|
| 15 | * Each contributing author retains all rights to their own work. |
|---|
| 16 | */ |
|---|
| 17 | |
|---|
| 18 | #ifndef _UDF_FS_SB_H |
|---|
| 19 | #define _UDF_FS_SB_H 1 |
|---|
| 20 | |
|---|
| 21 | #include <asm/types.h> |
|---|
| 22 | |
|---|
| 23 | #include <asm/semaphore.h> |
|---|
| 24 | |
|---|
| 25 | #pragma pack(1) |
|---|
| 26 | |
|---|
| 27 | #define UDF_MAX_BLOCK_LOADED 8 |
|---|
| 28 | |
|---|
| 29 | #define UDF_TYPE1_MAP15 0x1511U |
|---|
| 30 | #define UDF_VIRTUAL_MAP15 0x1512U |
|---|
| 31 | #define UDF_VIRTUAL_MAP20 0x2012U |
|---|
| 32 | #define UDF_SPARABLE_MAP15 0x1522U |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | struct udf_virtual_data |
|---|
| 36 | { |
|---|
| 37 | __u32 s_num_entries; |
|---|
| 38 | __u16 s_start_offset; |
|---|
| 39 | }; |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | #pragma pack() |
|---|
| 44 | |
|---|
| 45 | |
|---|
| 46 | #endif /* _UDF_FS_SB_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.