mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
In preparation for removing the strlcat API[1], replace the char *pp_buf
with a struct seq_buf, which tracks the current write position and
remaining space internally. This allows for:
- Direct use of seq_buf_printf() in place of snprintf()+strlcat()
pairs, eliminating local tmp buffers throughout.
- Adjacent strlcat() calls that build strings piece-by-piece
(e.g., strlcat("["); strlcat(name); strlcat("]")) to be collapsed
into single seq_buf_printf() calls.
- Simpler call sites: seq_buf_puts() takes only the buffer and string,
with no need to pass PAGE_SIZE at every call.
The backing buffer allocation is unchanged (__get_free_page), and the
output path uses seq_buf_str() to NUL-terminate before passing to
printk().
Link: https://github.com/KSPP/linux/issues/370 [1]
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Josh Law <objecting@objecting.org>
Signed-off-by: Kees Cook <kees@kernel.org>
Reviewed-by: Josh Law <objecting@objecting.org>
Link: https://patch.msgid.link/20260321004840.work.670-kees@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
61 lines
1.1 KiB
C
61 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* fs/partitions/karma.c
|
|
* Rio Karma partition info.
|
|
*
|
|
* Copyright (C) 2006 Bob Copeland (me@bobcopeland.com)
|
|
* based on osf.c
|
|
*/
|
|
|
|
#include "check.h"
|
|
#include <linux/compiler.h>
|
|
|
|
#define KARMA_LABEL_MAGIC 0xAB56
|
|
|
|
int karma_partition(struct parsed_partitions *state)
|
|
{
|
|
int i;
|
|
int slot = 1;
|
|
Sector sect;
|
|
unsigned char *data;
|
|
struct disklabel {
|
|
u8 d_reserved[270];
|
|
struct d_partition {
|
|
__le32 p_res;
|
|
u8 p_fstype;
|
|
u8 p_res2[3];
|
|
__le32 p_offset;
|
|
__le32 p_size;
|
|
} d_partitions[2];
|
|
u8 d_blank[208];
|
|
__le16 d_magic;
|
|
} __packed *label;
|
|
struct d_partition *p;
|
|
|
|
data = read_part_sector(state, 0, §);
|
|
if (!data)
|
|
return -1;
|
|
|
|
label = (struct disklabel *)data;
|
|
if (le16_to_cpu(label->d_magic) != KARMA_LABEL_MAGIC) {
|
|
put_dev_sector(sect);
|
|
return 0;
|
|
}
|
|
|
|
p = label->d_partitions;
|
|
for (i = 0 ; i < 2; i++, p++) {
|
|
if (slot == state->limit)
|
|
break;
|
|
|
|
if (p->p_fstype == 0x4d && le32_to_cpu(p->p_size)) {
|
|
put_partition(state, slot, le32_to_cpu(p->p_offset),
|
|
le32_to_cpu(p->p_size));
|
|
}
|
|
slot++;
|
|
}
|
|
seq_buf_puts(&state->pp_buf, "\n");
|
|
put_dev_sector(sect);
|
|
return 1;
|
|
}
|
|
|