| .. | .. |
|---|
| 42 | 42 | case UFS_ST_SUNOS: |
|---|
| 43 | 43 | if (fs32_to_cpu(sb, usb3->fs_postblformat) == UFS_42POSTBLFMT) |
|---|
| 44 | 44 | return fs32_to_cpu(sb, usb1->fs_u0.fs_sun.fs_state); |
|---|
| 45 | | - /* Fall Through to UFS_ST_SUN */ |
|---|
| 45 | + fallthrough; /* to UFS_ST_SUN */ |
|---|
| 46 | 46 | case UFS_ST_SUN: |
|---|
| 47 | 47 | return fs32_to_cpu(sb, usb3->fs_un2.fs_sun.fs_state); |
|---|
| 48 | 48 | case UFS_ST_SUNx86: |
|---|
| .. | .. |
|---|
| 63 | 63 | usb1->fs_u0.fs_sun.fs_state = cpu_to_fs32(sb, value); |
|---|
| 64 | 64 | break; |
|---|
| 65 | 65 | } |
|---|
| 66 | | - /* Fall Through to UFS_ST_SUN */ |
|---|
| 66 | + fallthrough; /* to UFS_ST_SUN */ |
|---|
| 67 | 67 | case UFS_ST_SUN: |
|---|
| 68 | 68 | usb3->fs_un2.fs_sun.fs_state = cpu_to_fs32(sb, value); |
|---|
| 69 | 69 | break; |
|---|
| .. | .. |
|---|
| 197 | 197 | case UFS_UID_EFT: |
|---|
| 198 | 198 | if (inode->ui_u1.oldids.ui_suid == 0xFFFF) |
|---|
| 199 | 199 | return fs32_to_cpu(sb, inode->ui_u3.ui_sun.ui_uid); |
|---|
| 200 | | - /* Fall through */ |
|---|
| 200 | + fallthrough; |
|---|
| 201 | 201 | default: |
|---|
| 202 | 202 | return fs16_to_cpu(sb, inode->ui_u1.oldids.ui_suid); |
|---|
| 203 | 203 | } |
|---|
| .. | .. |
|---|
| 215 | 215 | inode->ui_u3.ui_sun.ui_uid = cpu_to_fs32(sb, value); |
|---|
| 216 | 216 | if (value > 0xFFFF) |
|---|
| 217 | 217 | value = 0xFFFF; |
|---|
| 218 | | - /* Fall through */ |
|---|
| 218 | + fallthrough; |
|---|
| 219 | 219 | default: |
|---|
| 220 | 220 | inode->ui_u1.oldids.ui_suid = cpu_to_fs16(sb, value); |
|---|
| 221 | 221 | break; |
|---|
| .. | .. |
|---|
| 231 | 231 | case UFS_UID_EFT: |
|---|
| 232 | 232 | if (inode->ui_u1.oldids.ui_sgid == 0xFFFF) |
|---|
| 233 | 233 | return fs32_to_cpu(sb, inode->ui_u3.ui_sun.ui_gid); |
|---|
| 234 | | - /* Fall through */ |
|---|
| 234 | + fallthrough; |
|---|
| 235 | 235 | default: |
|---|
| 236 | 236 | return fs16_to_cpu(sb, inode->ui_u1.oldids.ui_sgid); |
|---|
| 237 | 237 | } |
|---|
| .. | .. |
|---|
| 249 | 249 | inode->ui_u3.ui_sun.ui_gid = cpu_to_fs32(sb, value); |
|---|
| 250 | 250 | if (value > 0xFFFF) |
|---|
| 251 | 251 | value = 0xFFFF; |
|---|
| 252 | | - /* Fall through */ |
|---|
| 252 | + fallthrough; |
|---|
| 253 | 253 | default: |
|---|
| 254 | 254 | inode->ui_u1.oldids.ui_sgid = cpu_to_fs16(sb, value); |
|---|
| 255 | 255 | break; |
|---|