forked from mirrors/linux
		
	net: Mark flowi arg to flow_cache_uli_match() const.
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									b520e9f616
								
							
						
					
					
						commit
						0730b9a150
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -112,7 +112,8 @@ extern struct flow_cache_object *flow_cache_lookup( | ||||||
| extern void flow_cache_flush(void); | extern void flow_cache_flush(void); | ||||||
| extern atomic_t flow_cache_genid; | extern atomic_t flow_cache_genid; | ||||||
| 
 | 
 | ||||||
| static inline int flow_cache_uli_match(struct flowi *fl1, struct flowi *fl2) | static inline int flow_cache_uli_match(const struct flowi *fl1, | ||||||
|  | 				       const struct flowi *fl2) | ||||||
| { | { | ||||||
| 	return (fl1->proto == fl2->proto && | 	return (fl1->proto == fl2->proto && | ||||||
| 		!memcmp(&fl1->uli_u, &fl2->uli_u, sizeof(fl1->uli_u))); | 		!memcmp(&fl1->uli_u, &fl2->uli_u, sizeof(fl1->uli_u))); | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 David S. Miller
						David S. Miller