| 1046 | // |
| 1047 | |
| 1048 | int |
| 1049 | ext2_init_linux() |
| 1050 | { |
| 1051 | int rc = 0; |
| 1052 | |
| 1053 | rc = ext2_init_bh(); |
| 1054 | if (rc != 0) { |
| 1055 | goto errorout; |
| 1056 | } |
| 1057 | |
| 1058 | errorout: |
| 1059 | |
| 1060 | return rc; |
| 1061 | } |
| 1062 | |
| 1063 | void |
| 1064 | ext2_destroy_linux() |
no test coverage detected