|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 23.58 GB of 70.42 GB (33.48%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
linux-headers-3.0.0-14/
include/
linux/
- drwxr-xr-x
|
Viewing file: dma-attrs.h (1.72 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#ifndef _DMA_ATTR_H #define _DMA_ATTR_H
#include <linux/bitmap.h> #include <linux/bitops.h> #include <linux/bug.h>
/** * an enum dma_attr represents an attribute associated with a DMA * mapping. The semantics of each attribute should be defined in * Documentation/DMA-attributes.txt. */ enum dma_attr { DMA_ATTR_WRITE_BARRIER, DMA_ATTR_WEAK_ORDERING, DMA_ATTR_MAX, };
#define __DMA_ATTRS_LONGS BITS_TO_LONGS(DMA_ATTR_MAX)
/** * struct dma_attrs - an opaque container for DMA attributes * @flags - bitmask representing a collection of enum dma_attr */ struct dma_attrs { unsigned long flags[__DMA_ATTRS_LONGS]; };
#define DEFINE_DMA_ATTRS(x) \ struct dma_attrs x = { \ .flags = { [0 ... __DMA_ATTRS_LONGS-1] = 0 }, \ }
static inline void init_dma_attrs(struct dma_attrs *attrs) { bitmap_zero(attrs->flags, __DMA_ATTRS_LONGS); }
#ifdef CONFIG_HAVE_DMA_ATTRS /** * dma_set_attr - set a specific attribute * @attr: attribute to set * @attrs: struct dma_attrs (may be NULL) */ static inline void dma_set_attr(enum dma_attr attr, struct dma_attrs *attrs) { if (attrs == NULL) return; BUG_ON(attr >= DMA_ATTR_MAX); __set_bit(attr, attrs->flags); }
/** * dma_get_attr - check for a specific attribute * @attr: attribute to set * @attrs: struct dma_attrs (may be NULL) */ static inline int dma_get_attr(enum dma_attr attr, struct dma_attrs *attrs) { if (attrs == NULL) return 0; BUG_ON(attr >= DMA_ATTR_MAX); return test_bit(attr, attrs->flags); } #else /* !CONFIG_HAVE_DMA_ATTRS */ static inline void dma_set_attr(enum dma_attr attr, struct dma_attrs *attrs) { }
static inline int dma_get_attr(enum dma_attr attr, struct dma_attrs *attrs) { return 0; } #endif /* CONFIG_HAVE_DMA_ATTRS */ #endif /* _DMA_ATTR_H */
|