diff options
author | Sumanth Korikkar <[email protected]> | 2024-01-08 14:27:45 +0100 |
---|---|---|
committer | Andrew Morton <[email protected]> | 2024-02-21 16:00:02 -0800 |
commit | fb6d5eb9f4c9620acbd8a78dafff0164c1b8824e (patch) | |
tree | 3b3bc2deb5c42f21394e8a60768beda1f103dd6a | |
parent | 1a65b73ae9abd608575e9bfbaa003d829d39fab9 (diff) |
s390/sclp: remove unhandled memory notifier type
Remove memory notifier types which are unhandled by s390. Unhandled
memory notifier types are covered by default case.
Link: https://lkml.kernel.org/r/[email protected]
Suggested-by: Alexander Gordeev <[email protected]>
Reviewed-by: David Hildenbrand <[email protected]>
Signed-off-by: Sumanth Korikkar <[email protected]>
Cc: Aneesh Kumar K.V <[email protected]>
Cc: Anshuman Khandual <[email protected]>
Cc: Gerald Schaefer <[email protected]>
Cc: Heiko Carstens <[email protected]>
Cc: Michal Hocko <[email protected]>
Cc: Oscar Salvador <[email protected]>
Cc: Vasily Gorbik <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r-- | drivers/s390/char/sclp_cmd.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/s390/char/sclp_cmd.c b/drivers/s390/char/sclp_cmd.c index 11c428f4c7cf..355e63e44e95 100644 --- a/drivers/s390/char/sclp_cmd.c +++ b/drivers/s390/char/sclp_cmd.c @@ -340,9 +340,6 @@ static int sclp_mem_notifier(struct notifier_block *nb, if (contains_standby_increment(start, start + size)) rc = -EPERM; break; - case MEM_ONLINE: - case MEM_CANCEL_OFFLINE: - break; case MEM_GOING_ONLINE: rc = sclp_mem_change_state(start, size, 1); break; |