We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 104fd0b commit af58740Copy full SHA for af58740
fs/pstore/ram_core.c
@@ -25,12 +25,10 @@
25
/**
26
* struct persistent_ram_buffer - persistent circular RAM buffer
27
*
28
- * @sig:
29
- * signature to indicate header (PERSISTENT_RAM_SIG xor PRZ-type value)
30
- * @start:
31
- * offset into @data where the beginning of the stored bytes begin
32
- * @size:
33
- * number of valid bytes stored in @data
+ * @sig: Signature to indicate header (PERSISTENT_RAM_SIG xor PRZ-type value)
+ * @start: First valid byte in the buffer.
+ * @size: Number of valid bytes in the buffer.
+ * @data: The contents of the buffer.
34
*/
35
struct persistent_ram_buffer {
36
uint32_t sig;
0 commit comments