File: bitfield.c

package info (click to toggle)
mcelog 1.0~pre3-72-gcbd4da4-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 808 kB
  • sloc: ansic: 6,915; sh: 471; makefile: 128
file content (63 lines) | stat: -rw-r--r-- 1,257 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <string.h>
#include <stdio.h>
#include "mcelog.h"
#include "bitfield.h"

char *reserved_3bits[8];
char *reserved_1bit[2];
char *reserved_2bits[4];

static u64 bitmask(u64 i)
{
	u64 mask = 1;
	while (mask < i) 
		mask = (mask << 1) | 1; 
	return mask;
}

void decode_bitfield(u64 status, struct field *fields)
{
	struct field *f;
	int linelen = 0;
	char *delim = "";
	char buf[60];
	int len;
	
	for (f = fields; f->str; f++) { 
		u64 v = (status >> f->start_bit) & bitmask(f->stringlen - 1);
		char *s = NULL;
		if (v < f->stringlen)
			s = f->str[v]; 
		if (!s) { 
			if (v == 0) 
				continue;
			s = buf; 
			buf[(sizeof buf)-1] = 0;
			snprintf(buf, (sizeof buf) - 1, "<%u:%llx>", f->start_bit, v);
		}
		len = strlen(s);
		if (linelen + len > 75) {
			delim = "\n";
			linelen = 0;
		}
		Wprintf("%s%s", delim, s);
		delim = " ";
		linelen += len + 1; 
	}
	if (linelen > 0) 
		Wprintf("\n");
}

void decode_numfield(u64 status, struct numfield *fields)
{
	struct numfield *f;
	for (f = fields; f->name; f++) {
		u64 mask = (1ULL << (f->end - f->start + 1)) - 1;
		u64 v = (status >> f->start) & mask;
		if (v > 0 || f->force) { 
			char fmt[30];
			snprintf(fmt, 30, "%%s: %s\n", f->fmt ? f->fmt : "%Lu");
			Wprintf(fmt, f->name, v);
		}
	}
}