File tree Expand file tree Collapse file tree 10 files changed +8
-24
lines changed Expand file tree Collapse file tree 10 files changed +8
-24
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Copyright (c) 1995, 2016, Oracle and/or its affiliates. All Rights Reserved.
4
4
Copyright (c) 2008, Google Inc.
5
+ Copyright (c) 2017, MariaDB Corporation.
5
6
6
7
Portions of this file contain modifications contributed and copyrighted by
7
8
Google, Inc. Those modifications are gratefully acknowledged and are described
@@ -1343,8 +1344,6 @@ buf_pool_init_instance(
1343
1344
buf_pool->chunks = chunk =
1344
1345
(buf_chunk_t *) mem_zalloc (sizeof *chunk);
1345
1346
1346
- UT_LIST_INIT (buf_pool->free );
1347
-
1348
1347
if (!buf_chunk_init (buf_pool, chunk, buf_pool_size)) {
1349
1348
mem_free (chunk);
1350
1349
mem_free (buf_pool);
Original file line number Diff line number Diff line change 1
1
/* ****************************************************************************
2
2
3
3
Copyright (c) 1995, 2016, Oracle and/or its affiliates. All Rights Reserved.
4
- Copyright (c) 2014, 2017, MariaDB Corporation. All Rights Reserved.
4
+ Copyright (c) 2014, 2017, MariaDB Corporation.
5
5
6
6
This program is free software; you can redistribute it and/or modify it under
7
7
the terms of the GNU General Public License as published by the Free Software
@@ -1546,8 +1546,6 @@ fil_init(
1546
1546
fil_system->spaces = hash_create (hash_size);
1547
1547
fil_system->name_hash = hash_create (hash_size);
1548
1548
1549
- UT_LIST_INIT (fil_system->LRU );
1550
-
1551
1549
fil_system->max_n_open = max_n_open;
1552
1550
}
1553
1551
Original file line number Diff line number Diff line change 1
1
/* ****************************************************************************
2
2
3
3
Copyright (c) 2010, 2016, Oracle and/or its affiliates. All Rights Reserved.
4
+ Copyright (c) 2017, MariaDB Corporation.
4
5
5
6
This program is free software; you can redistribute it and/or modify it under
6
7
the terms of the GNU General Public License as published by the Free Software
@@ -225,9 +226,6 @@ row_fts_psort_info_init(
225
226
each parallel sort thread. Each "sort bucket" holds records for
226
227
a particular "FTS index partition" */
227
228
for (j = 0 ; j < fts_sort_pll_degree; j++) {
228
-
229
- UT_LIST_INIT (psort_info[j].fts_doc_list );
230
-
231
229
for (i = 0 ; i < FTS_NUM_AUX_INDEX; i++) {
232
230
233
231
psort_info[j].merge_file [i] =
Original file line number Diff line number Diff line change @@ -1011,8 +1011,6 @@ srv_init(void)
1011
1011
srv_monitor_event = os_event_create ();
1012
1012
1013
1013
srv_buf_dump_event = os_event_create ();
1014
-
1015
- UT_LIST_INIT (srv_sys->tasks );
1016
1014
}
1017
1015
1018
1016
/* page_zip_stat_per_index_mutex is acquired from:
Original file line number Diff line number Diff line change 1
1
/* ****************************************************************************
2
2
3
3
Copyright (c) 1996, 2011, Oracle and/or its affiliates. All Rights Reserved.
4
+ Copyright (c) 2017, MariaDB Corporation.
4
5
5
6
This program is free software; you can redistribute it and/or modify it under
6
7
the terms of the GNU General Public License as published by the Free Software
@@ -48,8 +49,6 @@ sess_open(void)
48
49
sess->trx = trx_allocate_for_background ();
49
50
sess->trx ->sess = sess;
50
51
51
- UT_LIST_INIT (sess->graphs );
52
-
53
52
return (sess);
54
53
}
55
54
Original file line number Diff line number Diff line change 2
2
3
3
Copyright (c) 1995, 2016, Oracle and/or its affiliates. All Rights Reserved.
4
4
Copyright (c) 2008, Google Inc.
5
+ Copyright (c) 2017, MariaDB Corporation.
5
6
6
7
Portions of this file contain modifications contributed and copyrighted by
7
8
Google, Inc. Those modifications are gratefully acknowledged and are described
@@ -1432,8 +1433,6 @@ buf_pool_init_instance(
1432
1433
buf_pool->chunks = chunk =
1433
1434
(buf_chunk_t *) mem_zalloc (sizeof *chunk);
1434
1435
1435
- UT_LIST_INIT (buf_pool->free );
1436
-
1437
1436
if (!buf_chunk_init (buf_pool, chunk, buf_pool_size)) {
1438
1437
mem_free (chunk);
1439
1438
mem_free (buf_pool);
Original file line number Diff line number Diff line change 1
1
/* ****************************************************************************
2
2
3
3
Copyright (c) 1995, 2016, Oracle and/or its affiliates. All Rights Reserved.
4
- Copyright (c) 2014, 2017, MariaDB Corporation. All Rights Reserved.
4
+ Copyright (c) 2014, 2017, MariaDB Corporation.
5
5
6
6
This program is free software; you can redistribute it and/or modify it under
7
7
the terms of the GNU General Public License as published by the Free Software
@@ -1598,8 +1598,6 @@ fil_init(
1598
1598
fil_system->spaces = hash_create (hash_size);
1599
1599
fil_system->name_hash = hash_create (hash_size);
1600
1600
1601
- UT_LIST_INIT (fil_system->LRU );
1602
-
1603
1601
fil_system->max_n_open = max_n_open;
1604
1602
}
1605
1603
Original file line number Diff line number Diff line change 1
1
/* ****************************************************************************
2
2
3
3
Copyright (c) 2010, 2016, Oracle and/or its affiliates. All Rights Reserved.
4
+ Copyright (c) 2017, MariaDB Corporation.
4
5
5
6
This program is free software; you can redistribute it and/or modify it under
6
7
the terms of the GNU General Public License as published by the Free Software
@@ -228,9 +229,6 @@ row_fts_psort_info_init(
228
229
each parallel sort thread. Each "sort bucket" holds records for
229
230
a particular "FTS index partition" */
230
231
for (j = 0 ; j < fts_sort_pll_degree; j++) {
231
-
232
- UT_LIST_INIT (psort_info[j].fts_doc_list );
233
-
234
232
for (i = 0 ; i < FTS_NUM_AUX_INDEX; i++) {
235
233
236
234
psort_info[j].merge_file [i] =
Original file line number Diff line number Diff line change @@ -1164,8 +1164,6 @@ srv_init(void)
1164
1164
if (srv_track_changed_pages) {
1165
1165
os_event_set (srv_redo_log_tracked_event);
1166
1166
}
1167
-
1168
- UT_LIST_INIT (srv_sys->tasks );
1169
1167
}
1170
1168
1171
1169
/* page_zip_stat_per_index_mutex is acquired from:
Original file line number Diff line number Diff line change 1
1
/* ****************************************************************************
2
2
3
3
Copyright (c) 1996, 2011, Oracle and/or its affiliates. All Rights Reserved.
4
+ Copyright (c) 2017, MariaDB Corporation.
4
5
5
6
This program is free software; you can redistribute it and/or modify it under
6
7
the terms of the GNU General Public License as published by the Free Software
@@ -48,8 +49,6 @@ sess_open(void)
48
49
sess->trx = trx_allocate_for_background ();
49
50
sess->trx ->sess = sess;
50
51
51
- UT_LIST_INIT (sess->graphs );
52
-
53
52
return (sess);
54
53
}
55
54
You can’t perform that action at this time.
0 commit comments