EXT2 Being Deprecated in the Kernel

Chat about Linux in general
Forum rules
Do not post support questions here. Before you post read the forum rules. Topics in this forum are automatically closed 6 months after creation.
Post Reply
aybesea
Level 2
Level 2
Posts: 67
Joined: Thu Jul 07, 2011 8:07 pm

EXT2 Being Deprecated in the Kernel

Post by aybesea »

I read that EXT2 is being deprecated (and eventually removed) from the Linux Kernel. I currently use a /boot partition that is formatted EXT2. The article went on to say that the EXT4 Kernel Driver is capable of interacting with EXT2.

So, my question is... do I need to do anything? Change the fstab? Somehow reformat /boot (without losing boot ability)? Or can I just keep on like usual and the EXT4 Driver will just do everything seamlessly?
t42
Level 11
Level 11
Posts: 3747
Joined: Mon Jan 20, 2014 6:48 pm

Re: EXT2 Being Deprecated in the Kernel

Post by t42 »

aybesea wrote: Wed Mar 27, 2024 9:18 am Or can I just keep on like usual and the EXT4 Driver will just do everything seamlessly?
Correct, just do nothing. Probably you created ext2 partitions with ext4 driver. This news is actual for people who are using ext2 driver specifically for some reason. I'm usually format boot partition to ext2 and they were created with ext4 driver:

Code: Select all

sudo tune2fs -l /dev/sda1 | grep "Inode size"
         
Inode size:	          256
If you check your ext2 partions and get inode size 128, then you will have your file timestamps wrong, just wait for 2038 :)
-=t42=-
User avatar
xenopeek
Level 25
Level 25
Posts: 29615
Joined: Wed Jul 06, 2011 3:58 am

Re: EXT2 Being Deprecated in the Kernel

Post by xenopeek »

Deprecated doesn't mean removed. It means you're recommended to stop using it (from kernel 6.9) and sometime in coming years it will be removed (from a kernel > 6.9). ext2 can't handle timestamps after 2038 hence they're taking these steps now. To avoid another Y2K.

More info and background: https://bootlin.com/blog/ext2-filesyste ... eprecated/

If you're planning to upgrade to Linux Mint 22 mid this year you may want to take that as an opportunity to do a fresh install.
Image
billyswong
Level 8
Level 8
Posts: 2240
Joined: Wed Aug 14, 2019 1:02 am

Re: EXT2 Being Deprecated in the Kernel

Post by billyswong »

Sincere question: Any reason for some of you to format /boot as ext2? Why would some people in the past make such recommendation and what is keeping you guys into such practice?
t42
Level 11
Level 11
Posts: 3747
Joined: Mon Jan 20, 2014 6:48 pm

Re: EXT2 Being Deprecated in the Kernel

Post by t42 »

The boot partition is used only for a short time when booting the computer and sporadically during kernel upgrades. Journaling has no benefit here except wasting about 30 MB just for journal itself. For some system this space may be critical. Still we can exclude journal in ext4 as well, looking at /etc/mke2fs.conf we see ext4 features has_journal,extent,huge_file,flex_bg,metadata_csum,64bit,dir_nlink,extra_isize. This has_journal option maybe excluded with mkfs.ext4 -O ^has_journal option.
-=t42=-
billyswong
Level 8
Level 8
Posts: 2240
Joined: Wed Aug 14, 2019 1:02 am

Re: EXT2 Being Deprecated in the Kernel

Post by billyswong »

But isn't /boot a critical folder to the computer? I presume journaling is to reduce the chance of filesystem corruption. That 30MB is smaller than a modern Linux kernel image. And when one put /boot into a separate partition, that 30MB "saved" can't be used for any thing else aside from storing one extra old version of kernels.

So for ext2 or journal-disabled ext4 to be meaningful, it has to be some embedded device with so tight the storage size, such that squeezing 2 kernel images together in the process of kernel upgrade will stress the storage enough to utilize those last 30MB of space. Judging from my computer, if I set /boot a separate partition with only 512MB, holding 3 kernels (+1 in update) may become too tight. But keeping only 2 before installing update shall be safe with journaling. If I set /boot to 256MB, then 2+1 will be impossible while 1+1 may make it. At that point those last 30MB may be significant enough.

But why would I ever get things this tight in 2024? I will never ever create a separate partition for /boot unless I am going to encrypt the main partition. And for computers important enough to warrant this sort of full disk encryption, I am not going to run it in 32GB eMMC. The longevity of those are just incompatible with "important data".

Personal opinion: we shouldn't need to specify /boot as ext2 in PC since 200x.

Edit: Okay there are still some really low-end smartphone persisting with tiny 16GB internal storage. So maybe we are not totally away from this kind of drive space saving yet. But I am still inclining towards wasting those 30MB in journaling for such phones. People with such low-end phone care about reliability more than storing more photos in it. Such phone isn't going to be good at taking photo anyway.
t42
Level 11
Level 11
Posts: 3747
Joined: Mon Jan 20, 2014 6:48 pm

Re: EXT2 Being Deprecated in the Kernel

Post by t42 »

billyswong wrote: Thu Mar 28, 2024 7:00 am So for ext2 or journal-disabled ext4 to be meaningful, it has to be some embedded device
Of course, that's the main point and the rest of you message makes sense. But there is little journal practical value with one boot per day and no unique data on boot partition. To estimate journal on similar ext4 boot partition, here is my journal on it:

Code: Select all

sudo debugfs -R 'logdump -S' /dev/sdb4
debugfs 1.46.5 (30-Dec-2021)
Journal features:         journal_incompat_revoke journal_checksum_v3
Total journal size:       64M
Total journal blocks:     16384
Max transaction length:   16384
Fast commit length:       0
Journal sequence:         0x0000190c
Journal start:            2214
Journal checksum type:    crc32c
Journal checksum:         0x9311beb4

Journal starts at block 2214, transaction 6412
Found expected sequence 6412, type 1 (descriptor block) at block 2214
Found expected sequence 6412, type 2 (commit block) at block 2216
No magic number at block 2217: end of journal.
... to compare it with root partition

Code: Select all

sudo debugfs -R 'logdump -S' /dev/mapper/LM211EN
debugfs 1.46.5 (30-Dec-2021)
Journal features:         journal_incompat_revoke journal_64bit journal_checksum_v3
Total journal size:       128M
Total journal blocks:     32768
Max transaction length:   32768
Fast commit length:       0
Journal sequence:         0x00212839
Journal start:            30394
Journal checksum type:    crc32c
Journal checksum:         0x140b20e1

Journal starts at block 30394, transaction 2172985
Found expected sequence 2172985, type 1 (descriptor block) at block 30394
Found expected sequence 2172985, type 2 (commit block) at block 30406
Found expected sequence 2172986, type 1 (descriptor block) at block 30407
Found expected sequence 2172986, type 2 (commit block) at block 30413
Found expected sequence 2172987, type 1 (descriptor block) at block 30414
Found expected sequence 2172987, type 2 (commit block) at block 30418
Found expected sequence 2172988, type 1 (descriptor block) at block 30419
Found expected sequence 2172988, type 2 (commit block) at block 30431
Found expected sequence 2172989, type 1 (descriptor block) at block 30432
Found expected sequence 2172989, type 2 (commit block) at block 30442
Found expected sequence 2172990, type 1 (descriptor block) at block 30443
Found expected sequence 2172990, type 2 (commit block) at block 30445
Found expected sequence 2172991, type 1 (descriptor block) at block 30446
Found expected sequence 2172991, type 2 (commit block) at block 30455
Found expected sequence 2172992, type 1 (descriptor block) at block 30456
Found expected sequence 2172992, type 2 (commit block) at block 30468
Found expected sequence 2172993, type 1 (descriptor block) at block 30469
Found expected sequence 2172993, type 2 (commit block) at block 30472
Found expected sequence 2172994, type 1 (descriptor block) at block 30473
Found expected sequence 2172994, type 2 (commit block) at block 30482
Found expected sequence 2172995, type 1 (descriptor block) at block 30483
Found expected sequence 2172995, type 2 (commit block) at block 30495
Found expected sequence 2172996, type 1 (descriptor block) at block 30496
Found expected sequence 2172996, type 2 (commit block) at block 30506
Found expected sequence 2172997, type 1 (descriptor block) at block 30507
Found expected sequence 2172997, type 2 (commit block) at block 30517
Found expected sequence 2172998, type 1 (descriptor block) at block 30518
Found expected sequence 2172998, type 2 (commit block) at block 30523
Found expected sequence 2172999, type 1 (descriptor block) at block 30524
Found expected sequence 2172999, type 2 (commit block) at block 30530
Found expected sequence 2173000, type 1 (descriptor block) at block 30531
Found expected sequence 2173000, type 2 (commit block) at block 30540
Found expected sequence 2173001, type 1 (descriptor block) at block 30541
Found expected sequence 2173001, type 2 (commit block) at block 30552
Found expected sequence 2173002, type 1 (descriptor block) at block 30553
Found expected sequence 2173002, type 2 (commit block) at block 30562
Found expected sequence 2173003, type 1 (descriptor block) at block 30563
Found expected sequence 2173003, type 2 (commit block) at block 30573
Found expected sequence 2173004, type 1 (descriptor block) at block 30574
Found expected sequence 2173004, type 2 (commit block) at block 30576
Found expected sequence 2173005, type 1 (descriptor block) at block 30577
Found expected sequence 2173005, type 2 (commit block) at block 30586
Found expected sequence 2173006, type 1 (descriptor block) at block 30587
Found expected sequence 2173006, type 2 (commit block) at block 30598
Found expected sequence 2173007, type 1 (descriptor block) at block 30599
Found expected sequence 2173007, type 2 (commit block) at block 30608
Found expected sequence 2173008, type 1 (descriptor block) at block 30609
Found expected sequence 2173008, type 2 (commit block) at block 30622
Found expected sequence 2173009, type 1 (descriptor block) at block 30623
Found expected sequence 2173009, type 2 (commit block) at block 30634
Found expected sequence 2173010, type 1 (descriptor block) at block 30635
Found expected sequence 2173010, type 2 (commit block) at block 30637
Found expected sequence 2173011, type 1 (descriptor block) at block 30638
Found expected sequence 2173011, type 2 (commit block) at block 30647
Found expected sequence 2173012, type 1 (descriptor block) at block 30648
Found expected sequence 2173012, type 2 (commit block) at block 30659
Found expected sequence 2173013, type 1 (descriptor block) at block 30660
Found expected sequence 2173013, type 2 (commit block) at block 30669
Found expected sequence 2173014, type 1 (descriptor block) at block 30670
Found expected sequence 2173014, type 2 (commit block) at block 30680
Found expected sequence 2173015, type 1 (descriptor block) at block 30681
Found expected sequence 2173015, type 2 (commit block) at block 30692
Found expected sequence 2173016, type 1 (descriptor block) at block 30693
Found expected sequence 2173016, type 2 (commit block) at block 30695
Found expected sequence 2173017, type 1 (descriptor block) at block 30696
Found expected sequence 2173017, type 2 (commit block) at block 30705
Found expected sequence 2173018, type 1 (descriptor block) at block 30706
Found expected sequence 2173018, type 2 (commit block) at block 30717
Found expected sequence 2173019, type 1 (descriptor block) at block 30718
Found expected sequence 2173019, type 2 (commit block) at block 30727
Found expected sequence 2173020, type 1 (descriptor block) at block 30728
Found expected sequence 2173020, type 2 (commit block) at block 30741
Found expected sequence 2173021, type 1 (descriptor block) at block 30742
Found expected sequence 2173021, type 2 (commit block) at block 30753
Found expected sequence 2173022, type 1 (descriptor block) at block 30754
Found expected sequence 2173022, type 2 (commit block) at block 30756
Found expected sequence 2173023, type 1 (descriptor block) at block 30757
Found expected sequence 2173023, type 2 (commit block) at block 30762
Found expected sequence 2173024, type 1 (descriptor block) at block 30763
Found expected sequence 2173024, type 2 (commit block) at block 30772
Found expected sequence 2173025, type 1 (descriptor block) at block 30773
Found expected sequence 2173025, type 2 (commit block) at block 30775
Found expected sequence 2173026, type 1 (descriptor block) at block 30776
Found expected sequence 2173026, type 2 (commit block) at block 30789
Found expected sequence 2173027, type 1 (descriptor block) at block 30790
Found expected sequence 2173027, type 2 (commit block) at block 30792
Found expected sequence 2173028, type 1 (descriptor block) at block 30793
Found expected sequence 2173028, type 2 (commit block) at block 30802
Found expected sequence 2173029, type 1 (descriptor block) at block 30803
Found expected sequence 2173029, type 2 (commit block) at block 30814
Found expected sequence 2173030, type 1 (descriptor block) at block 30815
Found expected sequence 2173030, type 2 (commit block) at block 30817
Found expected sequence 2173031, type 1 (descriptor block) at block 30818
Found expected sequence 2173031, type 2 (commit block) at block 30827
Found expected sequence 2173032, type 1 (descriptor block) at block 30828
Found expected sequence 2173032, type 2 (commit block) at block 30839
Found expected sequence 2173033, type 1 (descriptor block) at block 30840
Found expected sequence 2173033, type 2 (commit block) at block 30847
Found expected sequence 2173034, type 1 (descriptor block) at block 30848
Found expected sequence 2173034, type 2 (commit block) at block 30857
Found expected sequence 2173035, type 1 (descriptor block) at block 30858
Found expected sequence 2173035, type 2 (commit block) at block 30867
Found expected sequence 2173036, type 1 (descriptor block) at block 30868
Found expected sequence 2173036, type 2 (commit block) at block 30881
Found expected sequence 2173037, type 1 (descriptor block) at block 30882
Found expected sequence 2173037, type 2 (commit block) at block 30892
Found expected sequence 2173038, type 1 (descriptor block) at block 30893
Found expected sequence 2173038, type 2 (commit block) at block 30900
Found expected sequence 2173039, type 1 (descriptor block) at block 30901
Found expected sequence 2173039, type 2 (commit block) at block 30910
Found expected sequence 2173040, type 1 (descriptor block) at block 30911
Found expected sequence 2173040, type 2 (commit block) at block 30915
Found expected sequence 2173041, type 1 (descriptor block) at block 30916
Found expected sequence 2173041, type 2 (commit block) at block 30926
Found expected sequence 2173042, type 1 (descriptor block) at block 30927
Found expected sequence 2173042, type 2 (commit block) at block 30932
Found expected sequence 2173043, type 1 (descriptor block) at block 30933
Found expected sequence 2173043, type 2 (commit block) at block 30948
Found expected sequence 2173044, type 1 (descriptor block) at block 30949
Found expected sequence 2173044, type 2 (commit block) at block 30955
Found expected sequence 2173045, type 1 (descriptor block) at block 30956
Found expected sequence 2173045, type 2 (commit block) at block 30967
Found expected sequence 2173046, type 1 (descriptor block) at block 30968
Found expected sequence 2173046, type 2 (commit block) at block 30977
Found expected sequence 2173047, type 1 (descriptor block) at block 30978
Found expected sequence 2173047, type 2 (commit block) at block 30989
Found expected sequence 2173048, type 1 (descriptor block) at block 30990
Found expected sequence 2173048, type 2 (commit block) at block 31003
Found expected sequence 2173049, type 1 (descriptor block) at block 31004
Found expected sequence 2173049, type 2 (commit block) at block 31010
Found expected sequence 2173050, type 1 (descriptor block) at block 31011
Found expected sequence 2173050, type 2 (commit block) at block 31022
Found expected sequence 2173051, type 1 (descriptor block) at block 31023
Found expected sequence 2173051, type 2 (commit block) at block 31032
Found expected sequence 2173052, type 1 (descriptor block) at block 31033
Found expected sequence 2173052, type 2 (commit block) at block 31042
Found expected sequence 2173053, type 1 (descriptor block) at block 31043
Found expected sequence 2173053, type 2 (commit block) at block 31064
Found expected sequence 2173054, type 1 (descriptor block) at block 31065
Found expected sequence 2173054, type 2 (commit block) at block 31079
Found expected sequence 2173055, type 1 (descriptor block) at block 31080
Found expected sequence 2173055, type 2 (commit block) at block 31089
Found expected sequence 2173056, type 1 (descriptor block) at block 31090
Found expected sequence 2173056, type 2 (commit block) at block 31106
Found expected sequence 2173057, type 1 (descriptor block) at block 31107
Found expected sequence 2173057, type 2 (commit block) at block 31114
Found expected sequence 2173058, type 1 (descriptor block) at block 31115
Found expected sequence 2173058, type 2 (commit block) at block 31121
Found expected sequence 2173059, type 1 (descriptor block) at block 31122
Found expected sequence 2173059, type 2 (commit block) at block 31128
Found expected sequence 2173060, type 1 (descriptor block) at block 31129
Found expected sequence 2173060, type 2 (commit block) at block 31134
Found expected sequence 2173061, type 1 (descriptor block) at block 31135
Found expected sequence 2173061, type 2 (commit block) at block 31141
Found expected sequence 2173062, type 1 (descriptor block) at block 31142
Found expected sequence 2173062, type 2 (commit block) at block 31146
Found expected sequence 2173063, type 1 (descriptor block) at block 31147
Found expected sequence 2173063, type 2 (commit block) at block 31153
Found expected sequence 2173064, type 1 (descriptor block) at block 31154
Found expected sequence 2173064, type 2 (commit block) at block 31158
Found expected sequence 2173065, type 1 (descriptor block) at block 31159
Found expected sequence 2173065, type 2 (commit block) at block 31165
Found expected sequence 2173066, type 1 (descriptor block) at block 31166
Found expected sequence 2173066, type 2 (commit block) at block 31176
Found expected sequence 2173067, type 1 (descriptor block) at block 31177
Found expected sequence 2173067, type 2 (commit block) at block 31189
Found expected sequence 2173068, type 1 (descriptor block) at block 31190
Found expected sequence 2173068, type 2 (commit block) at block 31198
Found expected sequence 2173069, type 1 (descriptor block) at block 31199
Found expected sequence 2173069, type 2 (commit block) at block 31211
Found expected sequence 2173070, type 1 (descriptor block) at block 31212
Found expected sequence 2173070, type 2 (commit block) at block 31221
Found expected sequence 2173071, type 1 (descriptor block) at block 31222
Found expected sequence 2173071, type 2 (commit block) at block 31225
Found expected sequence 2173072, type 1 (descriptor block) at block 31226
Found expected sequence 2173072, type 2 (commit block) at block 31238
Found expected sequence 2173073, type 1 (descriptor block) at block 31239
Found expected sequence 2173073, type 2 (commit block) at block 31251
Found expected sequence 2173074, type 1 (descriptor block) at block 31252
Found expected sequence 2173074, type 2 (commit block) at block 31258
Found expected sequence 2173075, type 1 (descriptor block) at block 31259
Found expected sequence 2173075, type 2 (commit block) at block 31262
Found expected sequence 2173076, type 1 (descriptor block) at block 31263
Found expected sequence 2173076, type 2 (commit block) at block 31271
Found expected sequence 2173077, type 1 (descriptor block) at block 31272
Found expected sequence 2173077, type 2 (commit block) at block 31280
Found expected sequence 2173078, type 1 (descriptor block) at block 31281
Found expected sequence 2173078, type 2 (commit block) at block 31293
Found expected sequence 2173079, type 1 (descriptor block) at block 31294
Found expected sequence 2173079, type 2 (commit block) at block 31297
Found expected sequence 2173080, type 1 (descriptor block) at block 31298
Found expected sequence 2173080, type 2 (commit block) at block 31306
Found expected sequence 2173081, type 1 (descriptor block) at block 31307
Found expected sequence 2173081, type 2 (commit block) at block 31318
Found expected sequence 2173082, type 1 (descriptor block) at block 31319
Found expected sequence 2173082, type 2 (commit block) at block 31336
Found expected sequence 2173083, type 1 (descriptor block) at block 31337
Found expected sequence 2173083, type 2 (commit block) at block 31348
Found expected sequence 2173084, type 1 (descriptor block) at block 31349
Found expected sequence 2173084, type 2 (commit block) at block 31362
Found expected sequence 2173085, type 1 (descriptor block) at block 31363
Found expected sequence 2173085, type 2 (commit block) at block 31366
Found expected sequence 2173086, type 1 (descriptor block) at block 31367
Found expected sequence 2173086, type 2 (commit block) at block 31375
Found expected sequence 2173087, type 1 (descriptor block) at block 31376
Found expected sequence 2173087, type 2 (commit block) at block 31392
Found expected sequence 2173088, type 1 (descriptor block) at block 31393
Found expected sequence 2173088, type 2 (commit block) at block 31405
Found expected sequence 2173089, type 1 (descriptor block) at block 31406
Found expected sequence 2173089, type 2 (commit block) at block 31410
Found expected sequence 2173090, type 1 (descriptor block) at block 31411
Found expected sequence 2173090, type 2 (commit block) at block 31423
Found expected sequence 2173091, type 1 (descriptor block) at block 31424
Found expected sequence 2173091, type 2 (commit block) at block 31430
Found expected sequence 2173092, type 1 (descriptor block) at block 31431
Found expected sequence 2173092, type 2 (commit block) at block 31438
Found expected sequence 2173093, type 1 (descriptor block) at block 31439
Found expected sequence 2173093, type 2 (commit block) at block 31448
Found expected sequence 2173094, type 1 (descriptor block) at block 31449
Found expected sequence 2173094, type 2 (commit block) at block 31462
Found expected sequence 2173095, type 1 (descriptor block) at block 31463
Found expected sequence 2173095, type 2 (commit block) at block 31469
Found expected sequence 2173096, type 1 (descriptor block) at block 31470
Found expected sequence 2173096, type 2 (commit block) at block 31473
Found expected sequence 2173097, type 1 (descriptor block) at block 31474
Found expected sequence 2173097, type 2 (commit block) at block 31484
Found expected sequence 2173098, type 1 (descriptor block) at block 31485
Found expected sequence 2173098, type 2 (commit block) at block 31498
Found expected sequence 2173099, type 1 (descriptor block) at block 31499
Found expected sequence 2173099, type 2 (commit block) at block 31502
Found expected sequence 2173100, type 1 (descriptor block) at block 31503
Found expected sequence 2173100, type 2 (commit block) at block 31512
Found expected sequence 2173101, type 1 (descriptor block) at block 31513
Found expected sequence 2173101, type 2 (commit block) at block 31525
Found expected sequence 2173102, type 1 (descriptor block) at block 31526
Found expected sequence 2173102, type 2 (commit block) at block 31537
Found expected sequence 2173103, type 1 (descriptor block) at block 31538
Found expected sequence 2173103, type 2 (commit block) at block 31551
Found expected sequence 2173104, type 1 (descriptor block) at block 31552
Found expected sequence 2173104, type 2 (commit block) at block 31562
Found expected sequence 2173105, type 1 (descriptor block) at block 31563
Found expected sequence 2173105, type 2 (commit block) at block 31571
Found expected sequence 2173106, type 1 (descriptor block) at block 31572
Found expected sequence 2173106, type 2 (commit block) at block 31583
Found expected sequence 2173107, type 1 (descriptor block) at block 31584
Found expected sequence 2173107, type 2 (commit block) at block 31586
Found expected sequence 2173108, type 1 (descriptor block) at block 31587
Found expected sequence 2173108, type 2 (commit block) at block 31596
Found expected sequence 2173109, type 1 (descriptor block) at block 31597
Found expected sequence 2173109, type 2 (commit block) at block 31608
Found expected sequence 2173110, type 1 (descriptor block) at block 31609
Found expected sequence 2173110, type 2 (commit block) at block 31618
Found expected sequence 2173111, type 1 (descriptor block) at block 31619
Found expected sequence 2173111, type 2 (commit block) at block 31631
Found expected sequence 2173112, type 1 (descriptor block) at block 31632
Found expected sequence 2173112, type 2 (commit block) at block 31639
Found expected sequence 2173113, type 1 (descriptor block) at block 31640
Found expected sequence 2173113, type 2 (commit block) at block 31648
Found expected sequence 2173114, type 1 (descriptor block) at block 31649
Found expected sequence 2173114, type 2 (commit block) at block 31655
Found expected sequence 2173115, type 1 (descriptor block) at block 31656
Found expected sequence 2173115, type 2 (commit block) at block 31662
Found expected sequence 2173116, type 1 (descriptor block) at block 31663
Found expected sequence 2173116, type 2 (commit block) at block 31667
Found expected sequence 2173117, type 1 (descriptor block) at block 31668
Found expected sequence 2173117, type 2 (commit block) at block 31674
Found expected sequence 2173118, type 1 (descriptor block) at block 31675
Found expected sequence 2173118, type 2 (commit block) at block 31679
Found expected sequence 2173119, type 1 (descriptor block) at block 31680
Found expected sequence 2173119, type 2 (commit block) at block 31686
Found expected sequence 2173120, type 1 (descriptor block) at block 31687
Found expected sequence 2173120, type 2 (commit block) at block 31696
Found expected sequence 2173121, type 1 (descriptor block) at block 31697
Found expected sequence 2173121, type 2 (commit block) at block 31709
Found expected sequence 2173122, type 1 (descriptor block) at block 31710
Found expected sequence 2173122, type 2 (commit block) at block 31723
Found expected sequence 2173123, type 1 (descriptor block) at block 31724
Found expected sequence 2173123, type 2 (commit block) at block 31728
Found expected sequence 2173124, type 1 (descriptor block) at block 31729
Found expected sequence 2173124, type 2 (commit block) at block 31739
Found expected sequence 2173125, type 1 (descriptor block) at block 31740
Found expected sequence 2173125, type 2 (commit block) at block 31752
Found expected sequence 2173126, type 1 (descriptor block) at block 31753
Found expected sequence 2173126, type 2 (commit block) at block 31758
Found expected sequence 2173127, type 1 (descriptor block) at block 31759
Found expected sequence 2173127, type 2 (commit block) at block 31765
Found expected sequence 2173128, type 1 (descriptor block) at block 31766
Found expected sequence 2173128, type 2 (commit block) at block 31772
Found expected sequence 2173129, type 1 (descriptor block) at block 31773
Found expected sequence 2173129, type 2 (commit block) at block 31786
Found expected sequence 2173130, type 1 (descriptor block) at block 31787
Found expected sequence 2173130, type 2 (commit block) at block 31789
Found expected sequence 2173131, type 1 (descriptor block) at block 31790
Found expected sequence 2173131, type 2 (commit block) at block 31805
Found expected sequence 2173132, type 1 (descriptor block) at block 31806
Found expected sequence 2173132, type 2 (commit block) at block 31813
Found expected sequence 2173133, type 1 (descriptor block) at block 31814
Found expected sequence 2173133, type 2 (commit block) at block 31818
Found expected sequence 2173134, type 1 (descriptor block) at block 31819
Found expected sequence 2173134, type 2 (commit block) at block 31825
Found expected sequence 2173135, type 1 (descriptor block) at block 31826
Found expected sequence 2173135, type 2 (commit block) at block 31830
Found expected sequence 2173136, type 1 (descriptor block) at block 31831
Found expected sequence 2173136, type 2 (commit block) at block 31837
Found expected sequence 2173137, type 1 (descriptor block) at block 31838
Found expected sequence 2173137, type 2 (commit block) at block 31843
Found expected sequence 2173138, type 1 (descriptor block) at block 31844
Found expected sequence 2173138, type 2 (commit block) at block 31850
Found expected sequence 2173139, type 1 (descriptor block) at block 31851
Found expected sequence 2173139, type 2 (commit block) at block 31853
Found expected sequence 2173140, type 1 (descriptor block) at block 31854
Found expected sequence 2173140, type 2 (commit block) at block 31864
Found expected sequence 2173141, type 1 (descriptor block) at block 31865
Found expected sequence 2173141, type 2 (commit block) at block 31876
Found expected sequence 2173142, type 1 (descriptor block) at block 31877
Found expected sequence 2173142, type 2 (commit block) at block 31880
Found expected sequence 2173143, type 1 (descriptor block) at block 31881
Found expected sequence 2173143, type 2 (commit block) at block 31892
Found expected sequence 2173144, type 1 (descriptor block) at block 31893
Found expected sequence 2173144, type 2 (commit block) at block 31905
Found expected sequence 2173145, type 1 (descriptor block) at block 31906
Found expected sequence 2173145, type 2 (commit block) at block 31917
Found expected sequence 2173146, type 1 (descriptor block) at block 31918
Found expected sequence 2173146, type 2 (commit block) at block 31926
Found expected sequence 2173147, type 1 (descriptor block) at block 31927
Found expected sequence 2173147, type 2 (commit block) at block 31936
Found expected sequence 2173148, type 1 (descriptor block) at block 31937
Found expected sequence 2173148, type 2 (commit block) at block 31946
Found expected sequence 2173149, type 1 (descriptor block) at block 31947
Found expected sequence 2173149, type 2 (commit block) at block 31962
Found expected sequence 2173150, type 1 (descriptor block) at block 31963
Found expected sequence 2173150, type 2 (commit block) at block 31969
Found expected sequence 2173151, type 1 (descriptor block) at block 31970
Found expected sequence 2173151, type 2 (commit block) at block 31973
Found expected sequence 2173152, type 1 (descriptor block) at block 31974
Found expected sequence 2173152, type 2 (commit block) at block 31979
Found expected sequence 2173153, type 1 (descriptor block) at block 31980
Found expected sequence 2173153, type 2 (commit block) at block 31987
Found expected sequence 2173154, type 1 (descriptor block) at block 31988
Found expected sequence 2173154, type 2 (commit block) at block 31997
Found expected sequence 2173155, type 1 (descriptor block) at block 31998
Found expected sequence 2173155, type 2 (commit block) at block 32011
Found expected sequence 2173156, type 1 (descriptor block) at block 32012
Found expected sequence 2173156, type 2 (commit block) at block 32016
Found expected sequence 2173157, type 1 (descriptor block) at block 32017
Found expected sequence 2173157, type 2 (commit block) at block 32026
Found expected sequence 2173158, type 1 (descriptor block) at block 32027
Found expected sequence 2173158, type 2 (commit block) at block 32038
Found expected sequence 2173159, type 1 (descriptor block) at block 32039
Found expected sequence 2173159, type 2 (commit block) at block 32048
Found expected sequence 2173160, type 1 (descriptor block) at block 32049
Found expected sequence 2173160, type 2 (commit block) at block 32062
Found expected sequence 2173161, type 1 (descriptor block) at block 32063
Found expected sequence 2173161, type 2 (commit block) at block 32073
Found expected sequence 2173162, type 1 (descriptor block) at block 32074
Found expected sequence 2173162, type 2 (commit block) at block 32076
Found expected sequence 2173163, type 1 (descriptor block) at block 32077
Found expected sequence 2173163, type 2 (commit block) at block 32086
Found expected sequence 2173164, type 1 (descriptor block) at block 32087
Found expected sequence 2173164, type 2 (commit block) at block 32098
Found expected sequence 2173165, type 1 (descriptor block) at block 32099
Found expected sequence 2173165, type 2 (commit block) at block 32103
Found expected sequence 2173166, type 1 (descriptor block) at block 32104
Found expected sequence 2173166, type 2 (commit block) at block 32119
Found expected sequence 2173167, type 1 (descriptor block) at block 32120
Found expected sequence 2173167, type 2 (commit block) at block 32133
Found expected sequence 2173168, type 1 (descriptor block) at block 32134
Found expected sequence 2173168, type 2 (commit block) at block 32140
Found expected sequence 2173169, type 1 (descriptor block) at block 32141
Found expected sequence 2173169, type 2 (commit block) at block 32151
Found expected sequence 2173170, type 1 (descriptor block) at block 32152
Found expected sequence 2173170, type 2 (commit block) at block 32164
Found expected sequence 2173171, type 1 (descriptor block) at block 32165
Found expected sequence 2173171, type 2 (commit block) at block 32174
Found expected sequence 2173172, type 1 (descriptor block) at block 32175
Found expected sequence 2173172, type 2 (commit block) at block 32197
Found expected sequence 2173173, type 1 (descriptor block) at block 32198
Found expected sequence 2173173, type 2 (commit block) at block 32211
Found expected sequence 2173174, type 1 (descriptor block) at block 32212
Found expected sequence 2173174, type 2 (commit block) at block 32222
Found expected sequence 2173175, type 1 (descriptor block) at block 32223
Found expected sequence 2173175, type 2 (commit block) at block 32233
Found expected sequence 2173176, type 1 (descriptor block) at block 32234
Found expected sequence 2173176, type 2 (commit block) at block 32238
Found expected sequence 2173177, type 1 (descriptor block) at block 32239
Found expected sequence 2173177, type 2 (commit block) at block 32252
Found expected sequence 2173178, type 1 (descriptor block) at block 32253
Found expected sequence 2173178, type 2 (commit block) at block 32255
Found expected sequence 2173179, type 1 (descriptor block) at block 32256
Found expected sequence 2173179, type 2 (commit block) at block 32269
Found expected sequence 2173180, type 1 (descriptor block) at block 32270
Found expected sequence 2173180, type 2 (commit block) at block 32279
Found expected sequence 2173181, type 1 (descriptor block) at block 32280
Found expected sequence 2173181, type 2 (commit block) at block 32290
Found expected sequence 2173182, type 1 (descriptor block) at block 32291
Found expected sequence 2173182, type 2 (commit block) at block 32300
Found expected sequence 2173183, type 1 (descriptor block) at block 32301
Found expected sequence 2173183, type 2 (commit block) at block 32312
Found expected sequence 2173184, type 1 (descriptor block) at block 32313
Found expected sequence 2173184, type 2 (commit block) at block 32322
Found expected sequence 2173185, type 1 (descriptor block) at block 32323
Found expected sequence 2173185, type 2 (commit block) at block 32335
Found expected sequence 2173186, type 1 (descriptor block) at block 32336
Found expected sequence 2173186, type 2 (commit block) at block 32346
Found expected sequence 2173187, type 1 (descriptor block) at block 32347
Found expected sequence 2173187, type 2 (commit block) at block 32351
Found expected sequence 2173188, type 1 (descriptor block) at block 32352
Found expected sequence 2173188, type 2 (commit block) at block 32364
Found expected sequence 2173189, type 1 (descriptor block) at block 32365
Found expected sequence 2173189, type 2 (commit block) at block 32367
Found expected sequence 2173190, type 1 (descriptor block) at block 32368
Found expected sequence 2173190, type 2 (commit block) at block 32379
Found expected sequence 2173191, type 1 (descriptor block) at block 32380
Found expected sequence 2173191, type 2 (commit block) at block 32389
Found expected sequence 2173192, type 1 (descriptor block) at block 32390
Found expected sequence 2173192, type 2 (commit block) at block 32400
Found expected sequence 2173193, type 1 (descriptor block) at block 32401
Found expected sequence 2173193, type 2 (commit block) at block 32412
Found expected sequence 2173194, type 1 (descriptor block) at block 32413
Found expected sequence 2173194, type 2 (commit block) at block 32422
Found expected sequence 2173195, type 1 (descriptor block) at block 32423
Found expected sequence 2173195, type 2 (commit block) at block 32435
Found expected sequence 2173196, type 1 (descriptor block) at block 32436
Found expected sequence 2173196, type 2 (commit block) at block 32439
Found expected sequence 2173197, type 1 (descriptor block) at block 32440
Found expected sequence 2173197, type 2 (commit block) at block 32449
Found expected sequence 2173198, type 1 (descriptor block) at block 32450
Found expected sequence 2173198, type 2 (commit block) at block 32463
Found expected sequence 2173199, type 1 (descriptor block) at block 32464
Found expected sequence 2173199, type 2 (commit block) at block 32474
Found expected sequence 2173200, type 1 (descriptor block) at block 32475
Found expected sequence 2173200, type 2 (commit block) at block 32480
Found expected sequence 2173201, type 1 (descriptor block) at block 32481
Found expected sequence 2173201, type 2 (commit block) at block 32485
Found expected sequence 2173202, type 1 (descriptor block) at block 32486
Found expected sequence 2173202, type 2 (commit block) at block 32492
Found expected sequence 2173203, type 1 (descriptor block) at block 32493
Found expected sequence 2173203, type 2 (commit block) at block 32502
Found expected sequence 2173204, type 1 (descriptor block) at block 32503
Found expected sequence 2173204, type 2 (commit block) at block 32514
Found expected sequence 2173205, type 1 (descriptor block) at block 32515
Found expected sequence 2173205, type 2 (commit block) at block 32524
Found expected sequence 2173206, type 1 (descriptor block) at block 32525
Found expected sequence 2173206, type 2 (commit block) at block 32535
Found expected sequence 2173207, type 1 (descriptor block) at block 32536
Found expected sequence 2173207, type 2 (commit block) at block 32545
Found expected sequence 2173208, type 1 (descriptor block) at block 32546
Found expected sequence 2173208, type 2 (commit block) at block 32557
Found expected sequence 2173209, type 1 (descriptor block) at block 32558
Found expected sequence 2173209, type 2 (commit block) at block 32567
Found expected sequence 2173210, type 1 (descriptor block) at block 32568
Found expected sequence 2173210, type 2 (commit block) at block 32580
Found expected sequence 2173211, type 1 (descriptor block) at block 32581
Found expected sequence 2173211, type 2 (commit block) at block 32591
Found expected sequence 2173212, type 1 (descriptor block) at block 32592
Found expected sequence 2173212, type 2 (commit block) at block 32599
Found expected sequence 2173213, type 1 (descriptor block) at block 32600
Found expected sequence 2173213, type 2 (commit block) at block 32609
Found expected sequence 2173214, type 1 (descriptor block) at block 32610
Found expected sequence 2173214, type 2 (commit block) at block 32614
Found expected sequence 2173215, type 1 (descriptor block) at block 32615
Found expected sequence 2173215, type 2 (commit block) at block 32621
Found expected sequence 2173216, type 1 (descriptor block) at block 32622
Found expected sequence 2173216, type 2 (commit block) at block 32630
Found expected sequence 2173217, type 1 (descriptor block) at block 32631
Found expected sequence 2173217, type 2 (commit block) at block 32642
Found expected sequence 2173218, type 1 (descriptor block) at block 32643
Found expected sequence 2173218, type 2 (commit block) at block 32645
Found expected sequence 2173219, type 1 (descriptor block) at block 32646
Found expected sequence 2173219, type 2 (commit block) at block 32654
Found expected sequence 2173220, type 1 (descriptor block) at block 32655
Found expected sequence 2173220, type 2 (commit block) at block 32665
Found expected sequence 2173221, type 1 (descriptor block) at block 32666
Found expected sequence 2173221, type 2 (commit block) at block 32675
Found expected sequence 2173222, type 1 (descriptor block) at block 32676
Found expected sequence 2173222, type 2 (commit block) at block 32687
Found expected sequence 2173223, type 1 (descriptor block) at block 32688
Found expected sequence 2173223, type 2 (commit block) at block 32697
Found expected sequence 2173224, type 1 (descriptor block) at block 32698
Found expected sequence 2173224, type 2 (commit block) at block 32711
Found expected sequence 2173225, type 1 (descriptor block) at block 32712
Found expected sequence 2173225, type 2 (commit block) at block 32722
Found expected sequence 2173226, type 1 (descriptor block) at block 32723
Found expected sequence 2173226, type 2 (commit block) at block 32725
Found expected sequence 2173227, type 1 (descriptor block) at block 32726
Found expected sequence 2173227, type 2 (commit block) at block 32730
Found expected sequence 2173228, type 1 (descriptor block) at block 32731
Found expected sequence 2173228, type 2 (commit block) at block 32737
Found expected sequence 2173229, type 1 (descriptor block) at block 32738
Found expected sequence 2173229, type 2 (commit block) at block 32746
Found expected sequence 2173230, type 1 (descriptor block) at block 32747
Found expected sequence 2173230, type 2 (commit block) at block 32762
Found expected sequence 2173231, type 1 (descriptor block) at block 32763
Found expected sequence 2173231, type 2 (commit block) at block 6
Found expected sequence 2173232, type 1 (descriptor block) at block 7
Found expected sequence 2173232, type 2 (commit block) at block 18
Found expected sequence 2173233, type 1 (descriptor block) at block 19
Found expected sequence 2173233, type 2 (commit block) at block 33
Found expected sequence 2173234, type 1 (descriptor block) at block 34
Found expected sequence 2173234, type 2 (commit block) at block 45
Found expected sequence 2173235, type 1 (descriptor block) at block 46
Found expected sequence 2173235, type 2 (commit block) at block 53
Found expected sequence 2173236, type 1 (descriptor block) at block 54
Found expected sequence 2173236, type 2 (commit block) at block 58
Found expected sequence 2173237, type 1 (descriptor block) at block 59
Found expected sequence 2173237, type 2 (commit block) at block 73
Found expected sequence 2173238, type 1 (descriptor block) at block 74
Found expected sequence 2173238, type 2 (commit block) at block 80
Found expected sequence 2173239, type 1 (descriptor block) at block 81
Found expected sequence 2173239, type 2 (commit block) at block 83
Found expected sequence 2173240, type 1 (descriptor block) at block 84
Found expected sequence 2173240, type 2 (commit block) at block 93
Found expected sequence 2173241, type 1 (descriptor block) at block 94
Found expected sequence 2173241, type 2 (commit block) at block 106
Found expected sequence 2173242, type 1 (descriptor block) at block 107
Found expected sequence 2173242, type 2 (commit block) at block 118
Found expected sequence 2173243, type 1 (descriptor block) at block 119
Found expected sequence 2173243, type 2 (commit block) at block 121
Found expected sequence 2173244, type 1 (descriptor block) at block 122
Found expected sequence 2173244, type 2 (commit block) at block 130
Found expected sequence 2173245, type 1 (descriptor block) at block 131
Found expected sequence 2173245, type 2 (commit block) at block 142
Found expected sequence 2173246, type 1 (descriptor block) at block 143
Found expected sequence 2173246, type 2 (commit block) at block 151
Found expected sequence 2173247, type 1 (descriptor block) at block 152
Found expected sequence 2173247, type 2 (commit block) at block 169
Found expected sequence 2173248, type 1 (descriptor block) at block 170
Found expected sequence 2173248, type 2 (commit block) at block 183
Found expected sequence 2173249, type 1 (descriptor block) at block 184
Found expected sequence 2173249, type 2 (commit block) at block 196
Found expected sequence 2173250, type 1 (descriptor block) at block 197
Found expected sequence 2173250, type 2 (commit block) at block 201
Found expected sequence 2173251, type 1 (descriptor block) at block 202
Found expected sequence 2173251, type 2 (commit block) at block 207
Found expected sequence 2173252, type 1 (descriptor block) at block 208
Found expected sequence 2173252, type 2 (commit block) at block 222
Found expected sequence 2173253, type 1 (descriptor block) at block 223
Found expected sequence 2173253, type 2 (commit block) at block 227
Found expected sequence 2173254, type 1 (descriptor block) at block 228
Found expected sequence 2173254, type 2 (commit block) at block 239
Found expected sequence 2173255, type 1 (descriptor block) at block 240
Found expected sequence 2173255, type 2 (commit block) at block 245
Found expected sequence 2173256, type 1 (descriptor block) at block 246
Found expected sequence 2173256, type 2 (commit block) at block 257
Found expected sequence 2173257, type 1 (descriptor block) at block 258
Found expected sequence 2173257, type 2 (commit block) at block 267
Found expected sequence 2173258, type 1 (descriptor block) at block 268
Found expected sequence 2173258, type 2 (commit block) at block 276
Found expected sequence 2173259, type 1 (descriptor block) at block 277
Found expected sequence 2173259, type 2 (commit block) at block 281
Found expected sequence 2173260, type 1 (descriptor block) at block 282
Found expected sequence 2173260, type 2 (commit block) at block 307
Found expected sequence 2173261, type 1 (descriptor block) at block 308
Found expected sequence 2173261, type 2 (commit block) at block 315
Found expected sequence 2173262, type 1 (descriptor block) at block 316
Found expected sequence 2173262, type 2 (commit block) at block 330
Found expected sequence 2173263, type 1 (descriptor block) at block 331
Found expected sequence 2173263, type 2 (commit block) at block 338
Found expected sequence 2173264, type 1 (descriptor block) at block 339
Found expected sequence 2173264, type 2 (commit block) at block 350
Found expected sequence 2173265, type 1 (descriptor block) at block 351
Found expected sequence 2173265, type 2 (commit block) at block 356
Found expected sequence 2173266, type 1 (descriptor block) at block 357
Found expected sequence 2173266, type 2 (commit block) at block 364
Found expected sequence 2173267, type 1 (descriptor block) at block 365
Found expected sequence 2173267, type 2 (commit block) at block 373
Found expected sequence 2173268, type 1 (descriptor block) at block 374
Found expected sequence 2173268, type 2 (commit block) at block 382
Found expected sequence 2173269, type 1 (descriptor block) at block 383
Found expected sequence 2173269, type 2 (commit block) at block 398
Found expected sequence 2173270, type 1 (descriptor block) at block 399
Found expected sequence 2173270, type 2 (commit block) at block 411
Found expected sequence 2173271, type 1 (descriptor block) at block 412
Found expected sequence 2173271, type 2 (commit block) at block 424
Found expected sequence 2173272, type 1 (descriptor block) at block 425
Found expected sequence 2173272, type 2 (commit block) at block 432
Found expected sequence 2173273, type 1 (descriptor block) at block 433
Found expected sequence 2173273, type 2 (commit block) at block 455
Found expected sequence 2173274, type 1 (descriptor block) at block 456
Found expected sequence 2173274, type 2 (commit block) at block 460
Found expected sequence 2173275, type 1 (descriptor block) at block 461
Found expected sequence 2173275, type 2 (commit block) at block 474
Found expected sequence 2173276, type 1 (descriptor block) at block 475
Found expected sequence 2173276, type 2 (commit block) at block 479
Found expected sequence 2173277, type 1 (descriptor block) at block 480
Found expected sequence 2173277, type 2 (commit block) at block 486
Found expected sequence 2173278, type 1 (descriptor block) at block 487
Found expected sequence 2173278, type 2 (commit block) at block 492
Found expected sequence 2173279, type 1 (descriptor block) at block 493
Found expected sequence 2173279, type 2 (commit block) at block 499
Found expected sequence 2173280, type 1 (descriptor block) at block 500
Found expected sequence 2173280, type 2 (commit block) at block 514
Found expected sequence 2173281, type 1 (descriptor block) at block 515
Found expected sequence 2173281, type 2 (commit block) at block 527
Found expected sequence 2173282, type 1 (descriptor block) at block 528
Found expected sequence 2173282, type 2 (commit block) at block 539
Found expected sequence 2173283, type 1 (descriptor block) at block 540
Found expected sequence 2173283, type 2 (commit block) at block 546
Found expected sequence 2173284, type 1 (descriptor block) at block 547
Found expected sequence 2173284, type 2 (commit block) at block 553
Found expected sequence 2173285, type 1 (descriptor block) at block 554
Found expected sequence 2173285, type 2 (commit block) at block 561
Found expected sequence 2173286, type 1 (descriptor block) at block 562
Found expected sequence 2173286, type 2 (commit block) at block 566
Found expected sequence 2173287, type 1 (descriptor block) at block 567
Found expected sequence 2173287, type 2 (commit block) at block 574
Found expected sequence 2173288, type 1 (descriptor block) at block 575
Found expected sequence 2173288, type 2 (commit block) at block 580
Found expected sequence 2173289, type 1 (descriptor block) at block 581
Found expected sequence 2173289, type 2 (commit block) at block 588
Found expected sequence 2173290, type 1 (descriptor block) at block 589
Found expected sequence 2173290, type 2 (commit block) at block 593
Found expected sequence 2173291, type 1 (descriptor block) at block 594
Found expected sequence 2173291, type 2 (commit block) at block 600
Found expected sequence 2173292, type 1 (descriptor block) at block 601
Found expected sequence 2173292, type 2 (commit block) at block 605
Found expected sequence 2173293, type 1 (descriptor block) at block 606
Found expected sequence 2173293, type 2 (commit block) at block 612
Found expected sequence 2173294, type 1 (descriptor block) at block 613
Found expected sequence 2173294, type 2 (commit block) at block 617
Found expected sequence 2173295, type 1 (descriptor block) at block 618
Found expected sequence 2173295, type 2 (commit block) at block 624
Found expected sequence 2173296, type 1 (descriptor block) at block 625
Found expected sequence 2173296, type 2 (commit block) at block 629
Found expected sequence 2173297, type 1 (descriptor block) at block 630
Found expected sequence 2173297, type 2 (commit block) at block 636
Found expected sequence 2173298, type 1 (descriptor block) at block 637
Found expected sequence 2173298, type 2 (commit block) at block 649
Found expected sequence 2173299, type 1 (descriptor block) at block 650
Found expected sequence 2173299, type 2 (commit block) at block 660
Found expected sequence 2173300, type 1 (descriptor block) at block 661
Found expected sequence 2173300, type 2 (commit block) at block 673
Found expected sequence 2173301, type 1 (descriptor block) at block 674
Found expected sequence 2173301, type 2 (commit block) at block 688
Found expected sequence 2173302, type 1 (descriptor block) at block 689
Found expected sequence 2173302, type 2 (commit block) at block 695
Found expected sequence 2173303, type 1 (descriptor block) at block 696
Found expected sequence 2173303, type 2 (commit block) at block 702
Found expected sequence 2173304, type 1 (descriptor block) at block 703
Found expected sequence 2173304, type 2 (commit block) at block 711
Found expected sequence 2173305, type 1 (descriptor block) at block 712
Found expected sequence 2173305, type 2 (commit block) at block 728
Found expected sequence 2173306, type 1 (descriptor block) at block 729
Found expected sequence 2173306, type 2 (commit block) at block 766
Found expected sequence 2173307, type 1 (descriptor block) at block 767
Found expected sequence 2173307, type 2 (commit block) at block 773
Found expected sequence 2173308, type 1 (descriptor block) at block 774
Found expected sequence 2173308, type 2 (commit block) at block 783
Found expected sequence 2173309, type 1 (descriptor block) at block 784
Found expected sequence 2173309, type 2 (commit block) at block 795
Found expected sequence 2173310, type 1 (descriptor block) at block 796
Found expected sequence 2173310, type 2 (commit block) at block 809
Found expected sequence 2173311, type 1 (descriptor block) at block 810
Found expected sequence 2173311, type 2 (commit block) at block 816
Found expected sequence 2173312, type 1 (descriptor block) at block 817
Found expected sequence 2173312, type 2 (commit block) at block 820
Found expected sequence 2173313, type 1 (descriptor block) at block 821
Found expected sequence 2173313, type 2 (commit block) at block 830
Found expected sequence 2173314, type 1 (descriptor block) at block 831
Found expected sequence 2173314, type 2 (commit block) at block 847
Found expected sequence 2173315, type 1 (descriptor block) at block 848
Found expected sequence 2173315, type 2 (commit block) at block 860
Found expected sequence 2173316, type 1 (descriptor block) at block 861
Found expected sequence 2173316, type 2 (commit block) at block 865
Found expected sequence 2173317, type 1 (descriptor block) at block 866
Found expected sequence 2173317, type 2 (commit block) at block 876
Found expected sequence 2173318, type 1 (descriptor block) at block 877
Found expected sequence 2173318, type 2 (commit block) at block 884
Found expected sequence 2173319, type 1 (descriptor block) at block 885
Found expected sequence 2173319, type 2 (commit block) at block 903
Found expected sequence 2173320, type 1 (descriptor block) at block 904
Found expected sequence 2173320, type 2 (commit block) at block 920
Found expected sequence 2173321, type 1 (descriptor block) at block 921
Found expected sequence 2173321, type 2 (commit block) at block 930
Found expected sequence 2173322, type 1 (descriptor block) at block 931
Found expected sequence 2173322, type 2 (commit block) at block 945
Found expected sequence 2173323, type 1 (descriptor block) at block 946
Found expected sequence 2173323, type 2 (commit block) at block 976
Found expected sequence 2173324, type 1 (descriptor block) at block 977
Found expected sequence 2173324, type 2 (commit block) at block 988
Found expected sequence 2173325, type 1 (descriptor block) at block 989
Found expected sequence 2173325, type 2 (commit block) at block 995
Found expected sequence 2173326, type 1 (descriptor block) at block 996
Found expected sequence 2173326, type 2 (commit block) at block 1003
Found expected sequence 2173327, type 1 (descriptor block) at block 1004
Found expected sequence 2173327, type 2 (commit block) at block 1013
Found expected sequence 2173328, type 1 (descriptor block) at block 1014
Found expected sequence 2173328, type 2 (commit block) at block 1032
Found expected sequence 2173329, type 1 (descriptor block) at block 1033
Found expected sequence 2173329, type 2 (commit block) at block 1044
Found expected sequence 2173330, type 1 (descriptor block) at block 1045
Found expected sequence 2173330, type 2 (commit block) at block 1054
Found expected sequence 2173331, type 1 (descriptor block) at block 1055
Found expected sequence 2173331, type 2 (commit block) at block 1064
Found expected sequence 2173332, type 1 (descriptor block) at block 1065
Found expected sequence 2173332, type 2 (commit block) at block 1082
Found expected sequence 2173333, type 1 (descriptor block) at block 1083
Found expected sequence 2173333, type 2 (commit block) at block 1089
Found expected sequence 2173334, type 1 (descriptor block) at block 1090
Found expected sequence 2173334, type 2 (commit block) at block 1101
Found expected sequence 2173335, type 1 (descriptor block) at block 1102
Found expected sequence 2173335, type 2 (commit block) at block 1105
Found expected sequence 2173336, type 1 (descriptor block) at block 1106
Found expected sequence 2173336, type 2 (commit block) at block 1114
Found expected sequence 2173337, type 1 (descriptor block) at block 1115
Found expected sequence 2173337, type 2 (commit block) at block 1128
Found expected sequence 2173338, type 1 (descriptor block) at block 1129
Found expected sequence 2173338, type 2 (commit block) at block 1135
Found expected sequence 2173339, type 1 (descriptor block) at block 1136
Found expected sequence 2173339, type 2 (commit block) at block 1138
Found expected sequence 2173340, type 1 (descriptor block) at block 1139
Found expected sequence 2173340, type 2 (commit block) at block 1141
Found expected sequence 2173341, type 1 (descriptor block) at block 1142
Found expected sequence 2173341, type 2 (commit block) at block 1152
Found expected sequence 2173342, type 1 (descriptor block) at block 1153
Found expected sequence 2173342, type 2 (commit block) at block 1164
Found expected sequence 2173343, type 1 (descriptor block) at block 1165
Found expected sequence 2173343, type 2 (commit block) at block 1179
Found expected sequence 2173344, type 1 (descriptor block) at block 1180
Found expected sequence 2173344, type 2 (commit block) at block 1193
Found expected sequence 2173345, type 1 (descriptor block) at block 1194
Found expected sequence 2173345, type 2 (commit block) at block 1204
Found expected sequence 2173346, type 1 (descriptor block) at block 1205
Found expected sequence 2173346, type 2 (commit block) at block 1208
Found expected sequence 2173347, type 1 (descriptor block) at block 1209
Found expected sequence 2173347, type 2 (commit block) at block 1213
Found expected sequence 2173348, type 1 (descriptor block) at block 1214
Found expected sequence 2173348, type 2 (commit block) at block 1220
Found expected sequence 2173349, type 1 (descriptor block) at block 1221
Found expected sequence 2173349, type 2 (commit block) at block 1229
Found expected sequence 2173350, type 1 (descriptor block) at block 1230
Found expected sequence 2173350, type 2 (commit block) at block 1241
Found expected sequence 2173351, type 1 (descriptor block) at block 1242
Found expected sequence 2173351, type 2 (commit block) at block 1249
Found expected sequence 2173352, type 1 (descriptor block) at block 1250
Found expected sequence 2173352, type 2 (commit block) at block 1259
Found expected sequence 2173353, type 1 (descriptor block) at block 1260
Found expected sequence 2173353, type 2 (commit block) at block 1271
Found expected sequence 2173354, type 1 (descriptor block) at block 1272
Found expected sequence 2173354, type 2 (commit block) at block 1274
Found expected sequence 2173355, type 1 (descriptor block) at block 1275
Found expected sequence 2173355, type 2 (commit block) at block 1284
Found expected sequence 2173356, type 1 (descriptor block) at block 1285
Found expected sequence 2173356, type 2 (commit block) at block 1296
Found expected sequence 2173357, type 1 (descriptor block) at block 1297
Found expected sequence 2173357, type 2 (commit block) at block 1306
Found expected sequence 2173358, type 1 (descriptor block) at block 1307
Found expected sequence 2173358, type 2 (commit block) at block 1321
Found expected sequence 2173359, type 1 (descriptor block) at block 1322
Found expected sequence 2173359, type 2 (commit block) at block 1333
Found expected sequence 2173360, type 1 (descriptor block) at block 1334
Found expected sequence 2173360, type 2 (commit block) at block 1343
Found expected sequence 2173361, type 1 (descriptor block) at block 1344
Found expected sequence 2173361, type 2 (commit block) at block 1349
Found expected sequence 2173362, type 1 (descriptor block) at block 1350
Found expected sequence 2173362, type 2 (commit block) at block 1356
Found expected sequence 2173363, type 1 (descriptor block) at block 1357
Found expected sequence 2173363, type 2 (commit block) at block 1366
Found expected sequence 2173364, type 1 (descriptor block) at block 1367
Found expected sequence 2173364, type 2 (commit block) at block 1378
Found expected sequence 2173365, type 1 (descriptor block) at block 1379
Found expected sequence 2173365, type 2 (commit block) at block 1381
Found expected sequence 2173366, type 1 (descriptor block) at block 1382
Found expected sequence 2173366, type 2 (commit block) at block 1391
Found expected sequence 2173367, type 1 (descriptor block) at block 1392
Found expected sequence 2173367, type 2 (commit block) at block 1403
Found expected sequence 2173368, type 1 (descriptor block) at block 1404
Found expected sequence 2173368, type 2 (commit block) at block 1406
Found expected sequence 2173369, type 1 (descriptor block) at block 1407
Found expected sequence 2173369, type 2 (commit block) at block 1416
Found expected sequence 2173370, type 1 (descriptor block) at block 1417
Found expected sequence 2173370, type 2 (commit block) at block 1428
Found expected sequence 2173371, type 1 (descriptor block) at block 1429
Found expected sequence 2173371, type 2 (commit block) at block 1438
Found expected sequence 2173372, type 1 (descriptor block) at block 1439
Found expected sequence 2173372, type 2 (commit block) at block 1452
Found expected sequence 2173373, type 1 (descriptor block) at block 1453
Found expected sequence 2173373, type 2 (commit block) at block 1464
Found expected sequence 2173374, type 1 (descriptor block) at block 1465
Found expected sequence 2173374, type 2 (commit block) at block 1467
Found expected sequence 2173375, type 1 (descriptor block) at block 1468
Found expected sequence 2173375, type 2 (commit block) at block 1472
Found expected sequence 2173376, type 1 (descriptor block) at block 1473
Found expected sequence 2173376, type 2 (commit block) at block 1479
Found expected sequence 2173377, type 1 (descriptor block) at block 1480
Found expected sequence 2173377, type 2 (commit block) at block 1489
Found expected sequence 2173378, type 1 (descriptor block) at block 1490
Found expected sequence 2173378, type 2 (commit block) at block 1507
Found expected sequence 2173379, type 1 (descriptor block) at block 1508
Found expected sequence 2173379, type 2 (commit block) at block 1518
Found expected sequence 2173380, type 1 (descriptor block) at block 1519
Found expected sequence 2173380, type 2 (commit block) at block 1528
Found expected sequence 2173381, type 1 (descriptor block) at block 1529
Found expected sequence 2173381, type 2 (commit block) at block 1540
Found expected sequence 2173382, type 1 (descriptor block) at block 1541
Found expected sequence 2173382, type 2 (commit block) at block 1553
Found expected sequence 2173383, type 1 (descriptor block) at block 1554
Found expected sequence 2173383, type 2 (commit block) at block 1563
Found expected sequence 2173384, type 1 (descriptor block) at block 1564
Found expected sequence 2173384, type 2 (commit block) at block 1575
Found expected sequence 2173385, type 1 (descriptor block) at block 1576
Found expected sequence 2173385, type 2 (commit block) at block 1585
Found expected sequence 2173386, type 1 (descriptor block) at block 1586
Found expected sequence 2173386, type 2 (commit block) at block 1599
No magic number at block 1600: end of journal.
-=t42=-
aybesea
Level 2
Level 2
Posts: 67
Joined: Thu Jul 07, 2011 8:07 pm

Re: EXT2 Being Deprecated in the Kernel

Post by aybesea »

Honestly, I've been doing this since 2004. I always read that it was more efficient to use ext 2 for the /boot partition. Since reading this thread, I will probably stop this practice once LMDE 7 is a thing.
Post Reply

Return to “Chat about Linux”