 9f10751365
			
		
	
	
		9f10751365
		
	
	
	
	
		
			
			This patch doesn't implement the 9p protocol handling code. It adds a simple device which dump the protocol data. [jvrao@linux.vnet.ibm.com: Little-Endian to host format conversion] [aneesh.kumar@linux.vnet.ibm.com: Multiple-mounts support] Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			424 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			424 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Virtio 9p
 | |
|  *
 | |
|  * Copyright IBM, Corp. 2010
 | |
|  *
 | |
|  * Authors:
 | |
|  *  Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2.  See
 | |
|  * the COPYING file in the top-level directory.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef QEMU_9P_H
 | |
| #define QEMU_9P_H
 | |
| 
 | |
| #include <stdbool.h>
 | |
| 
 | |
| typedef struct V9fsConf
 | |
| {
 | |
|     /* tag name for the device */
 | |
|     char *tag;
 | |
|     char *fsdev_id;
 | |
| } V9fsConf;
 | |
| 
 | |
| #endif
 |