Changeset 61eb2ce2 in mainline for uspace/srv
- Timestamp:
- 2023-02-05T22:03:19Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b596d0d
- Parents:
- 07700ed
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-05 22:01:46)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-05 22:03:19)
- Location:
- uspace/srv
- Files:
-
- 12 edited
-
devman/devtree.c (modified) (3 diffs)
-
fs/cdfs/cdfs_ops.c (modified) (1 diff)
-
fs/exfat/exfat_idx.c (modified) (2 diffs)
-
fs/fat/fat_idx.c (modified) (2 diffs)
-
fs/locfs/locfs_ops.c (modified) (1 diff)
-
fs/mfs/mfs_ops.c (modified) (1 diff)
-
fs/tmpfs/tmpfs_ops.c (modified) (1 diff)
-
fs/udf/udf_idx.c (modified) (1 diff)
-
hid/input/gsp.c (modified) (1 diff)
-
ns/service.c (modified) (2 diffs)
-
ns/task.c (modified) (2 diffs)
-
vfs/vfs_node.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devtree.c
r07700ed r61eb2ce2 93 93 } 94 94 95 static hash_table_ops_t devman_devices_ops = {95 static const hash_table_ops_t devman_devices_ops = { 96 96 .hash = devman_devices_hash, 97 97 .key_hash = handle_key_hash, … … 101 101 }; 102 102 103 static hash_table_ops_t devman_functions_ops = {103 static const hash_table_ops_t devman_functions_ops = { 104 104 .hash = devman_functions_hash, 105 105 .key_hash = handle_key_hash, … … 109 109 }; 110 110 111 static hash_table_ops_t loc_devices_ops = {111 static const hash_table_ops_t loc_devices_ops = { 112 112 .hash = loc_functions_hash, 113 113 .key_hash = service_id_key_hash, -
uspace/srv/fs/cdfs/cdfs_ops.c
r07700ed r61eb2ce2 323 323 324 324 /** Nodes hash table operations */ 325 static hash_table_ops_t nodes_ops = {325 static const hash_table_ops_t nodes_ops = { 326 326 .hash = nodes_hash, 327 327 .key_hash = nodes_key_hash, -
uspace/srv/fs/exfat/exfat_idx.c
r07700ed r61eb2ce2 149 149 } 150 150 151 static hash_table_ops_t uph_ops = {151 static const hash_table_ops_t uph_ops = { 152 152 .hash = pos_hash, 153 153 .key_hash = pos_key_hash, … … 195 195 } 196 196 197 static hash_table_ops_t uih_ops = {197 static const hash_table_ops_t uih_ops = { 198 198 .hash = idx_hash, 199 199 .key_hash = idx_key_hash, -
uspace/srv/fs/fat/fat_idx.c
r07700ed r61eb2ce2 149 149 } 150 150 151 static hash_table_ops_t uph_ops = {151 static const hash_table_ops_t uph_ops = { 152 152 .hash = pos_hash, 153 153 .key_hash = pos_key_hash, … … 195 195 } 196 196 197 static hash_table_ops_t uih_ops = {197 static const hash_table_ops_t uih_ops = { 198 198 .hash = idx_hash, 199 199 .key_hash = idx_key_hash, -
uspace/srv/fs/locfs/locfs_ops.c
r07700ed r61eb2ce2 95 95 } 96 96 97 static hash_table_ops_t services_ops = {97 static const hash_table_ops_t services_ops = { 98 98 .hash = services_hash, 99 99 .key_hash = services_key_hash, -
uspace/srv/fs/mfs/mfs_ops.c
r07700ed r61eb2ce2 123 123 } 124 124 125 static hash_table_ops_t open_nodes_ops = {125 static const hash_table_ops_t open_nodes_ops = { 126 126 .hash = open_nodes_hash, 127 127 .key_hash = open_nodes_key_hash, -
uspace/srv/fs/tmpfs/tmpfs_ops.c
r07700ed r61eb2ce2 189 189 190 190 /** TMPFS nodes hash table operations. */ 191 hash_table_ops_t nodes_ops = {191 const hash_table_ops_t nodes_ops = { 192 192 .hash = nodes_hash, 193 193 .key_hash = nodes_key_hash, -
uspace/srv/fs/udf/udf_idx.c
r07700ed r61eb2ce2 78 78 } 79 79 80 static hash_table_ops_t udf_idx_ops = {80 static const hash_table_ops_t udf_idx_ops = { 81 81 .hash = udf_idx_hash, 82 82 .key_hash = udf_idx_key_hash, -
uspace/srv/hid/input/gsp.c
r07700ed r61eb2ce2 84 84 } 85 85 86 static hash_table_ops_t trans_ops = {86 static const hash_table_ops_t trans_ops = { 87 87 .hash = trans_hash, 88 88 .key_hash = trans_key_hash, -
uspace/srv/ns/service.c
r07700ed r61eb2ce2 112 112 113 113 /** Operations for service hash table. */ 114 static hash_table_ops_t service_hash_table_ops = {114 static const hash_table_ops_t service_hash_table_ops = { 115 115 .hash = service_hash, 116 116 .key_hash = service_key_hash, … … 121 121 122 122 /** Operations for interface hash table. */ 123 static hash_table_ops_t iface_hash_table_ops = {123 static const hash_table_ops_t iface_hash_table_ops = { 124 124 .hash = iface_hash, 125 125 .key_hash = iface_key_hash, -
uspace/srv/ns/task.c
r07700ed r61eb2ce2 80 80 81 81 /** Operations for task hash table. */ 82 static hash_table_ops_t task_hash_table_ops = {82 static const hash_table_ops_t task_hash_table_ops = { 83 83 .hash = task_hash, 84 84 .key_hash = task_key_hash, … … 131 131 132 132 /** Operations for task hash table. */ 133 static hash_table_ops_t p2i_ops = {133 static const hash_table_ops_t p2i_ops = { 134 134 .hash = p2i_hash, 135 135 .key_hash = p2i_key_hash, -
uspace/srv/vfs/vfs_node.c
r07700ed r61eb2ce2 66 66 67 67 /** VFS node hash table operations. */ 68 hash_table_ops_t nodes_ops = {68 const hash_table_ops_t nodes_ops = { 69 69 .hash = nodes_hash, 70 70 .key_hash = nodes_key_hash,
Note:
See TracChangeset
for help on using the changeset viewer.
