forked from mirrors/linux
		
	ring_buffer: remove unused flags parameter, fix
Oprofile's ring-buffer use was not considered. Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
		
							parent
							
								
									b6f11df26f
								
							
						
					
					
						commit
						304cc6ae1b
					
				
					 1 changed files with 2 additions and 3 deletions
				
			
		| 
						 | 
					@ -161,7 +161,7 @@ struct op_sample
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	entry->event = ring_buffer_lock_reserve
 | 
						entry->event = ring_buffer_lock_reserve
 | 
				
			||||||
		(op_ring_buffer_write, sizeof(struct op_sample) +
 | 
							(op_ring_buffer_write, sizeof(struct op_sample) +
 | 
				
			||||||
		 size * sizeof(entry->sample->data[0]), &entry->irq_flags);
 | 
							 size * sizeof(entry->sample->data[0]));
 | 
				
			||||||
	if (entry->event)
 | 
						if (entry->event)
 | 
				
			||||||
		entry->sample = ring_buffer_event_data(entry->event);
 | 
							entry->sample = ring_buffer_event_data(entry->event);
 | 
				
			||||||
	else
 | 
						else
 | 
				
			||||||
| 
						 | 
					@ -178,8 +178,7 @@ struct op_sample
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int op_cpu_buffer_write_commit(struct op_entry *entry)
 | 
					int op_cpu_buffer_write_commit(struct op_entry *entry)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	return ring_buffer_unlock_commit(op_ring_buffer_write, entry->event,
 | 
						return ring_buffer_unlock_commit(op_ring_buffer_write, entry->event);
 | 
				
			||||||
					 entry->irq_flags);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct op_sample *op_cpu_buffer_read_entry(struct op_entry *entry, int cpu)
 | 
					struct op_sample *op_cpu_buffer_read_entry(struct op_entry *entry, int cpu)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue