xref: /linux/rust/helpers/fs.c (revision 6f7e6393d1ce636bb7ec77a7fe7b77458fddf701)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 /*
4  * Copyright (C) 2024 Google LLC.
5  */
6 
7 #include <linux/fs.h>
8 
9 __rust_helper struct file *rust_helper_get_file(struct file *f)
10 {
11 	return get_file(f);
12 }
13