summaryrefslogtreecommitdiff
path: root/test/test-mod-double-ref.c
blob: 90332476d9d7ed1e4c4c55102c98a790c7bfcf4b (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <errno.h>
#include <unistd.h>
#include <inttypes.h>
#include <string.h>
#include <libkmod.h>


int main(int argc, char *argv[])
{
	struct kmod_ctx *ctx;
	struct kmod_module *mod1, *mod2;
	const char *modname;
	int err;

	if (argc < 2) {
		fprintf(stderr, "ERR: Provide an alias name\n");
		return EXIT_FAILURE;
	}

	modname = argv[1];

	ctx = kmod_new(NULL, NULL);
	if (ctx == NULL)
		exit(EXIT_FAILURE);

	printf("libkmod version %s\n", VERSION);

	err = kmod_module_new_from_name(ctx, modname, &mod1);
	if (err < 0) {
		fprintf(stderr, "error creating module: '%s'\n", strerror(-err));
		goto fail;
	}

	printf("modname='%s' obj=%p\n", modname, mod1);

	err = kmod_module_new_from_name(ctx, modname, &mod2);
	if (err < 0) {
		fprintf(stderr, "error creating module: '%s'\n", strerror(-err));
		goto fail;
	}

	printf("modname='%s' obj=%p\n", modname, mod2);

	kmod_module_unref(mod1);
	kmod_module_unref(mod2);

	/* same thing, but now unref the first module */

	err = kmod_module_new_from_name(ctx, modname, &mod1);
	if (err < 0) {
		fprintf(stderr, "error creating module: '%s'\n", strerror(-err));
		goto fail;
	}

	printf("modname='%s' obj=%p\n", modname, mod1);

	kmod_module_unref(mod1);

	err = kmod_module_new_from_name(ctx, modname, &mod2);
	if (err < 0) {
		fprintf(stderr, "error creating module: '%s'\n", strerror(-err));
		goto fail;
	}

	printf("modname='%s' obj=%p\n", modname, mod2);

	kmod_module_unref(mod2);
	kmod_unref(ctx);

	return EXIT_SUCCESS;

fail:
	kmod_unref(ctx);
	return EXIT_FAILURE;
}