1*dc488f88SScott Feldman /* 2*dc488f88SScott Feldman * QEMU rocker switch emulation - OF-DPA flow processing support 3*dc488f88SScott Feldman * 4*dc488f88SScott Feldman * Copyright (c) 2014 Scott Feldman <sfeldma@gmail.com> 5*dc488f88SScott Feldman * 6*dc488f88SScott Feldman * This program is free software; you can redistribute it and/or modify 7*dc488f88SScott Feldman * it under the terms of the GNU General Public License as published by 8*dc488f88SScott Feldman * the Free Software Foundation; either version 2 of the License, or 9*dc488f88SScott Feldman * (at your option) any later version. 10*dc488f88SScott Feldman * 11*dc488f88SScott Feldman * This program is distributed in the hope that it will be useful, 12*dc488f88SScott Feldman * but WITHOUT ANY WARRANTY; without even the implied warranty of 13*dc488f88SScott Feldman * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14*dc488f88SScott Feldman * GNU General Public License for more details. 15*dc488f88SScott Feldman */ 16*dc488f88SScott Feldman 17*dc488f88SScott Feldman #ifndef _ROCKER_OF_DPA_H_ 18*dc488f88SScott Feldman #define _ROCKER_OF_DPA_H_ 19*dc488f88SScott Feldman 20*dc488f88SScott Feldman World *of_dpa_world_alloc(Rocker *r); 21*dc488f88SScott Feldman 22*dc488f88SScott Feldman #endif /* _ROCKER_OF_DPA_H_ */ 23