char: rename qemu_chr_get_msgfd() -> qemu_chr_fe_get_msgfd()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
		
							parent
							
								
									70f24fb6c6
								
							
						
					
					
						commit
						74c0d6f020
					
				| 
						 | 
				
			
			@ -401,7 +401,7 @@ static void ivshmem_read(void *opaque, const uint8_t * buf, int flags)
 | 
			
		|||
 | 
			
		||||
    memcpy(&incoming_posn, buf, sizeof(long));
 | 
			
		||||
    /* pick off s->server_chr->msgfd and store it, posn should accompany msg */
 | 
			
		||||
    tmp_fd = qemu_chr_get_msgfd(s->server_chr);
 | 
			
		||||
    tmp_fd = qemu_chr_fe_get_msgfd(s->server_chr);
 | 
			
		||||
    IVSHMEM_DPRINTF("posn is %ld, fd is %d\n", incoming_posn, tmp_fd);
 | 
			
		||||
 | 
			
		||||
    /* make sure we have enough space for this guest */
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2770,7 +2770,7 @@ static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
 | 
			
		|||
    mon_fd_t *monfd;
 | 
			
		||||
    int fd;
 | 
			
		||||
 | 
			
		||||
    fd = qemu_chr_get_msgfd(mon->chr);
 | 
			
		||||
    fd = qemu_chr_fe_get_msgfd(mon->chr);
 | 
			
		||||
    if (fd == -1) {
 | 
			
		||||
        qerror_report(QERR_FD_NOT_SUPPLIED);
 | 
			
		||||
        return -1;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -163,7 +163,7 @@ void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
 | 
			
		|||
    s->chr_read(s->handler_opaque, buf, len);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int qemu_chr_get_msgfd(CharDriverState *s)
 | 
			
		||||
int qemu_chr_fe_get_msgfd(CharDriverState *s)
 | 
			
		||||
{
 | 
			
		||||
    return s->get_msgfd ? s->get_msgfd(s) : -1;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -98,7 +98,7 @@ int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg);
 | 
			
		|||
void qemu_chr_generic_open(CharDriverState *s);
 | 
			
		||||
int qemu_chr_be_can_write(CharDriverState *s);
 | 
			
		||||
void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len);
 | 
			
		||||
int qemu_chr_get_msgfd(CharDriverState *s);
 | 
			
		||||
int qemu_chr_fe_get_msgfd(CharDriverState *s);
 | 
			
		||||
void qemu_chr_accept_input(CharDriverState *s);
 | 
			
		||||
int qemu_chr_add_client(CharDriverState *s, int fd);
 | 
			
		||||
void qemu_chr_info_print(Monitor *mon, const QObject *ret_data);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue