All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [Bug 1323001] [NEW] Netlink socket support for MIPS*
@ 2014-05-25 12:25 Luca Falavigna
  2014-06-10  7:07 ` [Qemu-devel] [Bug 1323001] " Luca Falavigna
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Luca Falavigna @ 2014-05-25 12:25 UTC (permalink / raw)
  To: qemu-devel

Public bug reported:

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);
        printf("errno is %d\n", errno);
        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 */

** Affects: qemu
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1323001

Title:
  Netlink socket support for MIPS*

Status in QEMU:
  New

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);
          printf("errno is %d\n", errno);
          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 */

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1323001/+subscriptions

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Qemu-devel] [Bug 1323001] Re: Netlink socket support for MIPS*
  2014-05-25 12:25 [Qemu-devel] [Bug 1323001] [NEW] Netlink socket support for MIPS* Luca Falavigna
@ 2014-06-10  7:07 ` Luca Falavigna
  2014-06-28 14:48 ` Luca Falavigna
  2015-01-20 10:14 ` Luca Falavigna
  2 siblings, 0 replies; 4+ messages in thread
From: Luca Falavigna @ 2014-06-10  7:07 UTC (permalink / raw)
  To: qemu-devel

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

** Tags added: patch

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1323001

Title:
  Netlink socket support for MIPS*

Status in QEMU:
  New

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);
          printf("errno is %d\n", errno);
          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 */

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1323001/+subscriptions

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Qemu-devel] [Bug 1323001] Re: Netlink socket support for MIPS*
  2014-05-25 12:25 [Qemu-devel] [Bug 1323001] [NEW] Netlink socket support for MIPS* Luca Falavigna
  2014-06-10  7:07 ` [Qemu-devel] [Bug 1323001] " Luca Falavigna
@ 2014-06-28 14:48 ` Luca Falavigna
  2015-01-20 10:14 ` Luca Falavigna
  2 siblings, 0 replies; 4+ messages in thread
From: Luca Falavigna @ 2014-06-28 14:48 UTC (permalink / raw)
  To: qemu-devel

http://git.qemu.org/?p=qemu.git;a=commitdiff;h=480eda2eda7c464e252f17ac87ec61bccc14f285

** Changed in: qemu
       Status: New => Fix Committed

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1323001

Title:
  Netlink socket support for MIPS*

Status in QEMU:
  Fix Committed

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);
          printf("errno is %d\n", errno);
          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 */

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1323001/+subscriptions

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Qemu-devel] [Bug 1323001] Re: Netlink socket support for MIPS*
  2014-05-25 12:25 [Qemu-devel] [Bug 1323001] [NEW] Netlink socket support for MIPS* Luca Falavigna
  2014-06-10  7:07 ` [Qemu-devel] [Bug 1323001] " Luca Falavigna
  2014-06-28 14:48 ` Luca Falavigna
@ 2015-01-20 10:14 ` Luca Falavigna
  2 siblings, 0 replies; 4+ messages in thread
From: Luca Falavigna @ 2015-01-20 10:14 UTC (permalink / raw)
  To: qemu-devel

** Changed in: qemu
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1323001

Title:
  Netlink socket support for MIPS*

Status in QEMU:
  Fix Released

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);
          printf("errno is %d\n", errno);
          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 */

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1323001/+subscriptions

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-01-20 10:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-25 12:25 [Qemu-devel] [Bug 1323001] [NEW] Netlink socket support for MIPS* Luca Falavigna
2014-06-10  7:07 ` [Qemu-devel] [Bug 1323001] " Luca Falavigna
2014-06-28 14:48 ` Luca Falavigna
2015-01-20 10:14 ` Luca Falavigna

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.