~andersk/ubuntu/raring/kmod/lp1082598

« back to all changes in this revision

Viewing changes to test/test-insmod.c

  • Committer: Package Import Robot
  • Author(s): Marco d'Itri
  • Date: 2012-01-08 20:47:12 UTC
  • Revision ID: package-import@ubuntu.com-20120108204712-alwv3y55vx2zyq7e
Tags: upstream-3
ImportĀ upstreamĀ versionĀ 3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
#include <stdlib.h>
 
3
#include <stddef.h>
 
4
#include <errno.h>
 
5
#include <unistd.h>
 
6
#include <inttypes.h>
 
7
#include <string.h>
 
8
#include <libkmod.h>
 
9
 
 
10
 
 
11
int main(int argc, char *argv[])
 
12
{
 
13
        const char *path;
 
14
        struct kmod_ctx *ctx;
 
15
        struct kmod_module *mod;
 
16
        int err;
 
17
 
 
18
        if (argc < 2) {
 
19
                fprintf(stderr, "Provide a path to a module\n");
 
20
                return EXIT_FAILURE;
 
21
        }
 
22
 
 
23
        path = argv[1];
 
24
 
 
25
        ctx = kmod_new(NULL, NULL);
 
26
        if (ctx == NULL)
 
27
                exit(EXIT_FAILURE);
 
28
 
 
29
        printf("libkmod version %s\n", VERSION);
 
30
 
 
31
        err = kmod_module_new_from_path(ctx, path, &mod);
 
32
        if (err < 0) {
 
33
                kmod_unref(ctx);
 
34
                exit(EXIT_FAILURE);
 
35
        }
 
36
 
 
37
        printf("Trying insmod '%s' (%s)\n", kmod_module_get_name(mod),
 
38
                                                kmod_module_get_path(mod));
 
39
        err = kmod_module_insert_module(mod, 0, NULL);
 
40
        if (err < 0) {
 
41
                fprintf(stderr, "%s\n", strerror(-err));
 
42
 
 
43
                kmod_module_unref(mod);
 
44
                kmod_unref(ctx);
 
45
                exit(EXIT_FAILURE);
 
46
        }
 
47
 
 
48
        kmod_module_unref(mod);
 
49
        kmod_unref(ctx);
 
50
 
 
51
        return EXIT_SUCCESS;
 
52
}