Netlink socket support for MIPS*
Bug #1323001 reported by
Luca Falavigna
This bug affects 3 people
| Affects | Status | Importance | Assigned to | Milestone | |
|---|---|---|---|---|---|
| QEMU |
Fix Released
|
Undecided
|
Unassigned | ||
Bug Description
It seems QEMU does not support Netlink socket support on MIPS*
Trying to compile and run this simple program:
#include <libaudit.h>
#include <stdio.h>
#include <errno.h>
int main()
{
int audit_fd = audit_open ();
printf("fd is %d\n", audit_fd);
return 0;
}
I receive the following output:
$ ./test
fd is -1
errno is 97
$
errno 97 is #define EAFNOSUPPORT 97 /* Address family not supported by protocol */
| Changed in qemu: | |
| status: | Fix Committed → Fix Released |
To post a comment you must log in.

This patches solves the issue for me: patchwork. ozlabs. org/patch/ 346018/
http://