[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.63.1.el8_10.x86_64
/
include
/
linux
/
irqchip
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 arm-gic-common.h
772 B
SET
[ EDIT ]
|
[ DEL ]
📄 arm-gic-v3.h
24,875 B
SET
[ EDIT ]
|
[ DEL ]
📄 arm-gic-v4.h
4,083 B
SET
[ EDIT ]
|
[ DEL ]
📄 arm-gic.h
5,673 B
SET
[ EDIT ]
|
[ DEL ]
📄 arm-vgic-info.h
849 B
SET
[ EDIT ]
|
[ DEL ]
📄 arm-vic.h
1,430 B
SET
[ EDIT ]
|
[ DEL ]
📄 chained_irq.h
1,471 B
SET
[ EDIT ]
|
[ DEL ]
📄 ingenic.h
759 B
SET
[ EDIT ]
|
[ DEL ]
📄 irq-bcm2836.h
2,395 B
SET
[ EDIT ]
|
[ DEL ]
📄 irq-omap-intc.h
977 B
SET
[ EDIT ]
|
[ DEL ]
📄 irq-partition-percpu.h
1,747 B
SET
[ EDIT ]
|
[ DEL ]
📄 irq-sa11x0.h
502 B
SET
[ EDIT ]
|
[ DEL ]
📄 mmp.h
155 B
SET
[ EDIT ]
|
[ DEL ]
📄 mxs.h
367 B
SET
[ EDIT ]
|
[ DEL ]
📄 versatile-fpga.h
353 B
SET
[ EDIT ]
|
[ DEL ]
📄 xtensa-mx.h
467 B
SET
[ EDIT ]
|
[ DEL ]
📄 xtensa-pic.h
532 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: chained_irq.h
/* * Chained IRQ handlers support. * * Copyright (C) 2011 ARM Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __IRQCHIP_CHAINED_IRQ_H #define __IRQCHIP_CHAINED_IRQ_H #include <linux/irq.h> /* * Entry/exit functions for chained handlers where the primary IRQ chip * may implement either fasteoi or level-trigger flow control. */ static inline void chained_irq_enter(struct irq_chip *chip, struct irq_desc *desc) { /* FastEOI controllers require no action on entry. */ if (chip->irq_eoi) return; if (chip->irq_mask_ack) { chip->irq_mask_ack(&desc->irq_data); } else { chip->irq_mask(&desc->irq_data); if (chip->irq_ack) chip->irq_ack(&desc->irq_data); } } static inline void chained_irq_exit(struct irq_chip *chip, struct irq_desc *desc) { if (chip->irq_eoi) chip->irq_eoi(&desc->irq_data); else chip->irq_unmask(&desc->irq_data); } #endif /* __IRQCHIP_CHAINED_IRQ_H */