/* * (C) 2001 Clemson University and The University of Chicago * * See COPYING in top-level directory. */ /* This file just defines debugging masks to be used with the gossip * logging utility. All debugging masks for ORANGEFS are kept here to make * sure we don't have collisions. */ #ifndef __ORANGEFS_DEBUG_H #define __ORANGEFS_DEBUG_H #ifdef __KERNEL__ #include #else #include #endif #define GOSSIP_NO_DEBUG (__u64)0 #define GOSSIP_SUPER_DEBUG ((__u64)1 << 0) #define GOSSIP_INODE_DEBUG ((__u64)1 << 1) #define GOSSIP_FILE_DEBUG ((__u64)1 << 2) #define GOSSIP_DIR_DEBUG ((__u64)1 << 3) #define GOSSIP_UTILS_DEBUG ((__u64)1 << 4) #define GOSSIP_WAIT_DEBUG ((__u64)1 << 5) #define GOSSIP_ACL_DEBUG ((__u64)1 << 6) #define GOSSIP_DCACHE_DEBUG ((__u64)1 << 7) #define GOSSIP_DEV_DEBUG ((__u64)1 << 8) #define GOSSIP_NAME_DEBUG ((__u64)1 << 9) #define GOSSIP_BUFMAP_DEBUG ((__u64)1 << 10) #define GOSSIP_CACHE_DEBUG ((__u64)1 << 11) #define GOSSIP_DEBUGFS_DEBUG ((__u64)1 << 12) #define GOSSIP_XATTR_DEBUG ((__u64)1 << 13) #define GOSSIP_INIT_DEBUG ((__u64)1 << 14) #define GOSSIP_SYSFS_DEBUG ((__u64)1 << 15) #define GOSSIP_MAX_NR 16 #define GOSSIP_MAX_DEBUG (((__u64)1 << GOSSIP_MAX_NR) - 1) /*function prototypes*/ __u64 ORANGEFS_kmod_eventlog_to_mask(const char *event_logging); __u64 ORANGEFS_debug_eventlog_to_mask(const char *event_logging); char *ORANGEFS_debug_mask_to_eventlog(__u64 mask); char *ORANGEFS_kmod_mask_to_eventlog(__u64 mask); /* a private internal type */ struct __keyword_mask_s { const char *keyword; __u64 mask_val; }; /* * Map all kmod keywords to kmod debug masks here. Keep this * structure "packed": * * "all" is always last... * * keyword mask_val index * foo 1 0 * bar 2 1 * baz 4 2 * qux 8 3 * . . . */ static struct __keyword_mask_s s_kmod_keyword_mask_map[] = { {"super", GOSSIP_SUPER_DEBUG}, {"inode", GOSSIP_INODE_DEBUG}, {"file", GOSSIP_FILE_DEBUG}, {"dir", GOSSIP_DIR_DEBUG}, {"utils", GOSSIP_UTILS_DEBUG}, {"wait", GOSSIP_WAIT_DEBUG}, {"acl", GOSSIP_ACL_DEBUG}, {"dcache", GOSSIP_DCACHE_DEBUG}, {"dev", GOSSIP_DEV_DEBUG}, {"name", GOSSIP_NAME_DEBUG}, {"bufmap", GOSSIP_BUFMAP_DEBUG}, {"cache", GOSSIP_CACHE_DEBUG}, {"debugfs", GOSSIP_DEBUGFS_DEBUG}, {"xattr", GOSSIP_XATTR_DEBUG}, {"init", GOSSIP_INIT_DEBUG}, {"sysfs", GOSSIP_SYSFS_DEBUG}, {"none", GOSSIP_NO_DEBUG}, {"all", GOSSIP_MAX_DEBUG} }; static const int num_kmod_keyword_mask_map = (int) (sizeof(s_kmod_keyword_mask_map) / sizeof(struct __keyword_mask_s)); #endif /* __ORANGEFS_DEBUG_H */ net-next.git/commit/?id=eeeefd41843218c55a8782a6920f044d9bf6207a'>root/sound/pci/lx6464es/lx_defs.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-02-05 18:10:35 +0100
committerJens Axboe <axboe@fb.com>2017-02-06 09:34:46 -0700
commiteeeefd41843218c55a8782a6920f044d9bf6207a (patch)
treec342eac46626e62745aa8e1a982626efca8b121d /sound/pci/lx6464es/lx_defs.h
parentc14024dbb156c8392908aaa822097d27c6af8ec8 (diff)
block: don't try Write Same from __blkdev_issue_zeroout
Write Same can return an error asynchronously if it turns out the underlying SCSI device does not support Write Same, which makes a proper fallback to other methods in __blkdev_issue_zeroout impossible. Thus only issue a Write Same from blkdev_issue_zeroout an don't try it at all from __blkdev_issue_zeroout as a non-invasive workaround. Signed-off-by: Christoph Hellwig <hch@lst.de> Reported-by: Junichi Nomura <j-nomura@ce.jp.nec.com> Fixes: e73c23ff ("block: add async variant of blkdev_issue_zeroout") Tested-by: Junichi Nomura <j-nomura@ce.jp.nec.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'sound/pci/lx6464es/lx_defs.h')