Skip to content

Commit

Permalink
Re-organize util lib
Browse files Browse the repository at this point in the history
  • Loading branch information
huaicheng committed Nov 23, 2018
1 parent c8d454a commit ad32cd9
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 121 deletions.
2 changes: 1 addition & 1 deletion hw/block/Makefile.objs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ obj-$(CONFIG_FEMU_PCI) += femu/nvme-core.o
obj-$(CONFIG_FEMU_PCI) += femu/femu.o
obj-$(CONFIG_FEMU_PCI) += femu/ocssd/
obj-$(CONFIG_FEMU_PCI) += femu/ssd/
obj-$(CONFIG_FEMU_PCI) += femu/ring/
obj-$(CONFIG_FEMU_PCI) += femu/lib/
obj-$(CONFIG_FEMU_PCI) += femu/mem-backend.o

obj-$(CONFIG_SH4) += tc58128.o
Expand Down
2 changes: 1 addition & 1 deletion hw/block/femu/femu.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "hw/pci/msi.h"
#include "qapi/visitor.h"
#include "qapi/error.h"
#include "ring/rte_ring.h"
#include "include/rte_ring.h"

#include <immintrin.h>
#include "nvme.h"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
#include <errno.h>
#include <sys/queue.h>

#include "rte_ring.h"
#include "../include/rte_ring.h"

/* true if x is a power of 2 */
#define POWEROF2(x) ((((x)-1) & (x)) == 0)
Expand Down
22 changes: 0 additions & 22 deletions hw/block/femu/ring/Makefile

This file was deleted.

96 changes: 0 additions & 96 deletions hw/block/femu/ring/ring-test.c

This file was deleted.

0 comments on commit ad32cd9

Please sign in to comment.