summaryrefslogtreecommitdiff
path: root/irq.h
blob: 005e22418b38976242987f578e06594485189d2b (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef IRQ_H
#define IRQ_H

extern int device_irq_number(const char *ifname);
extern void device_restore_irq_affinity_list(void);
extern int device_set_irq_affinity_list(int irq, unsigned long from,
					unsigned long to);
extern int device_set_irq_affinity(int irq, unsigned long cpu);

#endif /* IRQ_H */
/option>space:mode:
authorEryu Guan <guaneryu@gmail.com>2016-04-06 07:19:40 +1000
committerDave Chinner <david@fromorbit.com>2016-04-06 07:19:40 +1000
commitce5c767db079649db88a9f189798839f9c544981 (patch)
treebd2af44217e96c07aea5b104d2665df82abff4f5 /Documentation/devicetree/bindings/mtd
parentad747e3b299671e1a53db74963cc6c5f6cdb9f6d (diff)
xfs: add missing break in xfs_parseargs()
Commit 2e74af0e1189 ("xfs: convert mount option parsing to tokens") missed a 'break;' in xfs_parseargs() which causes mount to fail with "-o pqnoenforce" option when mounting a v4 filesystem. xfs/050 catches this failure: XFS (vda6): Super block does not support project and group quota together Fixes: 2e74af0e1189 ("xfs: convert mount option parsing to tokens") Signed-off-by: Eryu Guan <guaneryu@gmail.com> Reviewed-by: Brian Foster <bfoster@redhat.com> Reviewed-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'Documentation/devicetree/bindings/mtd')