Revision c77f8bf918e66711938a25b19b188b24971a7d30 authored by Linus Torvalds on 08 March 2013, 22:42:16 UTC, committed by Linus Torvalds on 08 March 2013, 22:42:16 UTC
Pull random fixes from Ted Ts'o:
 "Fix a circular locking dependency in random's collection of cputime
  used by a thread when it exits."

* tag 'random_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/random:
  random: fix locking dependency with the tasklist_lock
2 parent s 7b54c16 + b980955
Raw File
config.c
/* Configuration space parsing helpers for virtio.
 *
 * The configuration is [type][len][... len bytes ...] fields.
 *
 * Copyright 2007 Rusty Russell, IBM Corporation.
 * GPL v2 or later.
 */
#include <linux/err.h>
#include <linux/virtio.h>
#include <linux/virtio_config.h>
#include <linux/bug.h>

back to top