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 */
alue='0' selected='selected'>unified
authorEric Biggers <ebiggers@google.com>2016-10-15 09:39:31 -0400
committerTheodore Ts'o <tytso@mit.edu>2016-10-15 09:39:31 -0400
commit199625098a18a5522b424dea9b122b254c022fc5 (patch)
tree1fe5bf2507fc04c391e752a7d808c509d5f99da1
parentfb4454376df9d820d95452d71dd83da6971f9338 (diff)
ext4: correct endianness conversion in __xattr_check_inode()
It should be cpu_to_le32(), not le32_to_cpu(). No change in behavior. Found with sparse, and this was the only endianness warning in fs/ext4/. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu> Reviewed-by: Jan Kara <jack@suse.cz>
Diffstat