mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 12:44:03 +02:00
dm-ioctl: delete a useless condition
The condition "remaining <= 0" can never be true. The variable remaining has type size_t, thus it can't be negative. It can't be zero because we made sure earlier that "remaining > sizeof(struct dm_target_spec)" and then we added "sizeof(struct dm_target_spec)" to "outptr" (this means that we subtraceted "sizeof(struct dm_target_spec)" from "remaining"). Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Assisted-by: Claude:claude-opus-4.6
This commit is contained in:
parent
553f9a9a36
commit
a02d51919b
|
|
@ -1444,10 +1444,6 @@ static void retrieve_status(struct dm_table *table,
|
|||
|
||||
outptr += sizeof(struct dm_target_spec);
|
||||
remaining = len - (outptr - outbuf);
|
||||
if (remaining <= 0) {
|
||||
param->flags |= DM_BUFFER_FULL_FLAG;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Get the status/table string from the target driver */
|
||||
if (ti->type->status) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user