| .. | .. |
|---|
| 108 | 108 | case -EPROTONOSUPPORT: |
|---|
| 109 | 109 | dprintk("NFS_V3_ACL extension not supported; disabling\n"); |
|---|
| 110 | 110 | server->caps &= ~NFS_CAP_ACLS; |
|---|
| 111 | | - /* fall through */ |
|---|
| 111 | + fallthrough; |
|---|
| 112 | 112 | case -ENOTSUPP: |
|---|
| 113 | 113 | status = -EOPNOTSUPP; |
|---|
| 114 | 114 | default: |
|---|
| .. | .. |
|---|
| 222 | 222 | switch (status) { |
|---|
| 223 | 223 | case 0: |
|---|
| 224 | 224 | status = nfs_refresh_inode(inode, fattr); |
|---|
| 225 | | - set_cached_acl(inode, ACL_TYPE_ACCESS, acl); |
|---|
| 226 | | - set_cached_acl(inode, ACL_TYPE_DEFAULT, dfacl); |
|---|
| 227 | 225 | break; |
|---|
| 228 | 226 | case -EPFNOSUPPORT: |
|---|
| 229 | 227 | case -EPROTONOSUPPORT: |
|---|
| 230 | 228 | dprintk("NFS_V3_ACL SETACL RPC not supported" |
|---|
| 231 | 229 | "(will not retry)\n"); |
|---|
| 232 | 230 | server->caps &= ~NFS_CAP_ACLS; |
|---|
| 233 | | - /* fall through */ |
|---|
| 231 | + fallthrough; |
|---|
| 234 | 232 | case -ENOTSUPP: |
|---|
| 235 | 233 | status = -EOPNOTSUPP; |
|---|
| 236 | 234 | } |
|---|