• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/mman.h>
4 
rust_helper_lockdep_set_class_rwsem(struct rw_semaphore * lock,struct lock_class_key * key,const char * name)5 void rust_helper_lockdep_set_class_rwsem(struct rw_semaphore *lock, struct lock_class_key *key,
6 					 const char *name)
7 {
8 	lockdep_set_class_and_name(lock, key, name);
9 }
10