Searched refs:ip (Results 26 - 50 of 1861) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/freevxfs/
H A Dvxfs_inode.c215 * @ip: VFS inode
220 * fields in @ip from @vip.
223 vxfs_iinit(struct inode *ip, struct vxfs_inode_info *vip) argument
226 ip->i_mode = vxfs_transmod(vip);
227 ip->i_uid = (uid_t)vip->vii_uid;
228 ip->i_gid = (gid_t)vip->vii_gid;
230 ip->i_nlink = vip->vii_nlink;
231 ip->i_size = vip->vii_size;
233 ip->i_atime.tv_sec = vip->vii_atime;
234 ip
260 struct inode *ip = NULL; local
277 vxfs_put_fake_inode(struct inode *ip) argument
296 struct inode *ip; local
348 vxfs_evict_inode(struct inode *ip) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_refcache.h41 #define xfs_refcache_insert(ip) do { } while (0)
42 #define xfs_refcache_purge_ip(ip) do { } while (0)
48 #define xfs_refcache_iunlock(ip, flags) xfs_iunlock(ip, flags)
H A Dxfs_utils.c69 xfs_inode_t *ip; local
97 &ialloc_context, &call_again, &ip);
108 if (!call_again && (ip == NULL)) {
201 okalloc, &ialloc_context, &call_again, &ip);
212 ASSERT ((!call_again) && (ip != NULL));
220 *ipp = ip;
234 xfs_inode_t *ip)
238 xfs_ichgtime(ip, XFS_ICHGTIME_CHG);
240 ASSERT (ip->i_d.di_nlink > 0);
241 ip
232 xfs_droplink( xfs_trans_t *tp, xfs_inode_t *ip) argument
266 xfs_bump_ino_vers2( xfs_trans_t *tp, xfs_inode_t *ip) argument
296 xfs_bumplink( xfs_trans_t *tp, xfs_inode_t *ip) argument
[all...]
H A Dxfs_rw.h32 xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb) argument
34 return (XFS_IS_REALTIME_INODE(ip) ? \
35 (xfs_daddr_t)XFS_FSB_TO_BB((ip)->i_mount, (fsb)) : \
36 XFS_FSB_TO_DADDR((ip)->i_mount, (fsb)));
47 extern xfs_extlen_t xfs_get_extsz_hint(struct xfs_inode *ip);
H A Dxfs_filestream.h56 xfs_agnumber_t xfs_filestream_lookup_ag(struct xfs_inode *ip);
57 int xfs_filestream_associate(struct xfs_inode *dip, struct xfs_inode *ip);
58 void xfs_filestream_deassociate(struct xfs_inode *ip);
65 struct xfs_inode *ip)
67 return (ip->i_mount->m_flags & XFS_MOUNT_FILESTREAMS) ||
68 xfs_iflags_test(ip, XFS_IFILESTREAM) ||
69 (ip->i_d.di_flags & XFS_DIFLAG_FILESTREAM);
64 xfs_inode_is_filestream( struct xfs_inode *ip) argument
H A Dxfs_dfrag.c41 xfs_inode_t *ip, /* target inode */
52 xfs_inode_t *ip, *tip; local
89 ip = XFS_I(file->f_path.dentry->d_inode);
92 if (ip->i_mount != tip->i_mount) {
97 if (ip->i_ino == tip->i_ino) {
102 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
107 error = xfs_swap_extents(ip, tip, sxp);
139 xfs_inode_t *ip, /* target inode */
144 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
152 if (ip
138 xfs_swap_extents_check_format( xfs_inode_t *ip, xfs_inode_t *tip) argument
200 xfs_swap_extents( xfs_inode_t *ip, xfs_inode_t *tip, xfs_swapext_t *sxp) argument
[all...]
H A Dxfs_inode.h174 #define XFS_IFORK_Q(ip) ((ip)->i_d.di_forkoff != 0)
175 #define XFS_IFORK_BOFF(ip) ((int)((ip)->i_d.di_forkoff << 3))
177 #define XFS_IFORK_PTR(ip,w) \
179 &(ip)->i_df : \
180 (ip)->i_afp)
181 #define XFS_IFORK_DSIZE(ip) \
182 (XFS_IFORK_Q(ip) ? \
183 XFS_IFORK_BOFF(ip)
278 VFS_I(struct xfs_inode *ip) argument
287 __xfs_iflags_set(xfs_inode_t *ip, unsigned short flags) argument
293 xfs_iflags_set(xfs_inode_t *ip, unsigned short flags) argument
301 xfs_iflags_clear(xfs_inode_t *ip, unsigned short flags) argument
309 __xfs_iflags_test(xfs_inode_t *ip, unsigned short flags) argument
315 xfs_iflags_test(xfs_inode_t *ip, unsigned short flags) argument
325 xfs_iflags_test_and_clear(xfs_inode_t *ip, unsigned short flags) argument
342 xfs_iflock(xfs_inode_t *ip) argument
347 xfs_iflock_nowait(xfs_inode_t *ip) argument
352 xfs_ifunlock(xfs_inode_t *ip) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/linux-2.6/
H A Dxfs_file.c55 struct xfs_inode *ip, /* inode */
63 mapping = VFS_I(ip)->i_mapping;
98 struct xfs_inode *ip = XFS_I(inode); local
103 trace_xfs_file_fsync(ip);
105 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
108 xfs_iflags_clear(ip, XFS_ITRUNCATED);
110 xfs_ioend_wait(ip);
124 xfs_ilock(ip, XFS_ILOCK_SHARED);
137 ip->i_update_core) {
142 xfs_iunlock(ip, XFS_ILOCK_SHARE
54 xfs_iozero( struct xfs_inode *ip, loff_t pos, size_t count) argument
212 struct xfs_inode *ip = XFS_I(inode); local
300 struct xfs_inode *ip = XFS_I(infilp->f_mapping->host); local
333 struct xfs_inode *ip = XFS_I(inode); local
390 xfs_zero_last_block( xfs_inode_t *ip, xfs_fsize_t offset, xfs_fsize_t isize) argument
458 xfs_zero_eof( xfs_inode_t *ip, xfs_off_t offset, xfs_fsize_t isize) argument
575 struct xfs_inode *ip = XFS_I(inode); local
823 struct xfs_inode *ip = XFS_I(inode); local
857 xfs_inode_t *ip = XFS_I(inode); local
[all...]
H A Dxfs_fs_subr.c30 xfs_inode_t *ip,
35 struct address_space *mapping = VFS_I(ip)->i_mapping;
43 xfs_inode_t *ip,
48 struct address_space *mapping = VFS_I(ip)->i_mapping;
51 trace_xfs_pagecache_inval(ip, first, last);
54 xfs_iflags_clear(ip, XFS_ITRUNCATED);
64 xfs_inode_t *ip,
70 struct address_space *mapping = VFS_I(ip)->i_mapping;
75 xfs_iflags_clear(ip, XFS_ITRUNCATED);
80 ret2 = xfs_wait_on_pages(ip, firs
29 xfs_tosspages( xfs_inode_t *ip, xfs_off_t first, xfs_off_t last, int fiopt) argument
42 xfs_flushinval_pages( xfs_inode_t *ip, xfs_off_t first, xfs_off_t last, int fiopt) argument
63 xfs_flush_pages( xfs_inode_t *ip, xfs_off_t first, xfs_off_t last, uint64_t flags, int fiopt) argument
87 xfs_wait_on_pages( xfs_inode_t *ip, xfs_off_t first, xfs_off_t last) argument
[all...]
H A Dxfs_sync.c51 struct xfs_inode *ip; local
60 (void **)&ip, *first_index, 1);
63 (void **)&ip, *first_index, 1, tag);
74 *first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1);
75 if (*first_index < XFS_INO_TO_AGINO(mp, ip->i_ino))
77 return ip;
84 int (*execute)(struct xfs_inode *ip,
100 xfs_inode_t *ip; local
106 ip = xfs_inode_ag_lookup(mp, pag, &first_index, tag);
107 if (!ip) {
81 xfs_inode_ag_walk( struct xfs_mount *mp, struct xfs_perag *pag, int (*execute)(struct xfs_inode *ip, struct xfs_perag *pag, int flags), int flags, int tag, int exclusive, int *nr_to_scan) argument
173 xfs_inode_ag_iterator( struct xfs_mount *mp, int (*execute)(struct xfs_inode *ip, struct xfs_perag *pag, int flags), int flags, int tag, int exclusive, int *nr_to_scan) argument
209 xfs_sync_inode_valid( struct xfs_inode *ip, struct xfs_perag *pag) argument
242 xfs_sync_inode_data( struct xfs_inode *ip, struct xfs_perag *pag, int flags) argument
276 xfs_sync_inode_attr( struct xfs_inode *ip, struct xfs_perag *pag, int flags) argument
520 xfs_flush_inodes( xfs_inode_t *ip) argument
628 __xfs_inode_set_reclaim_tag( struct xfs_perag *pag, struct xfs_inode *ip) argument
655 xfs_inode_set_reclaim_tag( xfs_inode_t *ip) argument
672 __xfs_inode_clear_reclaim( xfs_perag_t *pag, xfs_inode_t *ip) argument
690 __xfs_inode_clear_reclaim_tag( xfs_mount_t *mp, xfs_perag_t *pag, xfs_inode_t *ip) argument
751 xfs_reclaim_inode( struct xfs_inode *ip, struct xfs_perag *pag, int sync_mode) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/jfs/
H A Djfs_extent.h22 #define INOHINT(ip) \
23 (addressPXD(&(JFS_IP(ip)->ixpxd)) + lengthPXD(&(JFS_IP(ip)->ixpxd)) - 1)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/lzo/
H A Dlzo1x_decompress.c23 #define HAVE_IP(x, ip_end, ip) ((size_t)(ip_end - ip) < (x))
35 const unsigned char *ip = in, *m_pos; local
41 if (*ip > 17) {
42 t = *ip++ - 17;
47 if (HAVE_IP(t + 1, ip_end, ip))
50 *op++ = *ip++;
55 while ((ip < ip_end)) {
56 t = *ip++;
60 if (HAVE_IP(1, ip_end, ip))
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dvp3dsp.c49 int16_t *ip = input; local
59 if (ip[0 * 8] | ip[1 * 8] | ip[2 * 8] | ip[3 * 8] |
60 ip[4 * 8] | ip[5 * 8] | ip[6 * 8] | ip[7 * 8]) {
61 A = M(xC1S7, ip[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/gfs2/
H A Dbmap.c38 typedef int (*block_call_t) (struct gfs2_inode *ip, struct buffer_head *dibh,
50 * @ip: the inode
58 static int gfs2_unstuffer_page(struct gfs2_inode *ip, struct buffer_head *dibh, argument
61 struct inode *inode = &ip->i_inode;
96 if (!gfs2_is_jdata(ip))
98 if (!gfs2_is_writeback(ip))
99 gfs2_trans_add_bh(ip->i_gl, bh, 0);
111 * @ip: The GFS2 inode to unstuff
121 int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page) argument
126 int isdir = gfs2_is_dir(ip);
293 lookup_metapath(struct gfs2_inode *ip, struct metapath *mp) argument
362 bmap_lock(struct gfs2_inode *ip, int create) argument
370 bmap_unlock(struct gfs2_inode *ip, int create) argument
433 struct gfs2_inode *ip = GFS2_I(inode); local
573 struct gfs2_inode *ip = GFS2_I(inode); local
687 recursive_scan(struct gfs2_inode *ip, struct buffer_head *dibh, struct metapath *mp, unsigned int height, u64 block, int first, block_call_t bc, void *data) argument
753 do_strip(struct gfs2_inode *ip, struct buffer_head *dibh, struct buffer_head *bh, __be64 *top, __be64 *bottom, unsigned int height, void *data) argument
897 do_grow(struct gfs2_inode *ip, u64 size) argument
963 struct gfs2_inode *ip = GFS2_I(inode); local
1026 trunc_start(struct gfs2_inode *ip, u64 size) argument
1072 trunc_dealloc(struct gfs2_inode *ip, u64 size) argument
1110 trunc_end(struct gfs2_inode *ip) argument
1155 do_shrink(struct gfs2_inode *ip, u64 size) argument
1172 do_touch(struct gfs2_inode *ip, u64 size) argument
1210 gfs2_truncatei(struct gfs2_inode *ip, u64 size) argument
1228 gfs2_truncatei_resume(struct gfs2_inode *ip) argument
1237 gfs2_file_dealloc(struct gfs2_inode *ip) argument
1251 gfs2_write_alloc_required(struct gfs2_inode *ip, u64 offset, unsigned int len) argument
[all...]
H A Drgrp.h34 extern struct gfs2_alloc *gfs2_alloc_get(struct gfs2_inode *ip);
35 static inline void gfs2_alloc_put(struct gfs2_inode *ip) argument
37 BUG_ON(ip->i_alloc == NULL);
38 kfree(ip->i_alloc);
39 ip->i_alloc = NULL;
42 extern int gfs2_inplace_reserve_i(struct gfs2_inode *ip, char *file,
44 #define gfs2_inplace_reserve(ip) \
45 gfs2_inplace_reserve_i((ip), __FILE__, __LINE__)
47 extern void gfs2_inplace_release(struct gfs2_inode *ip);
49 extern int gfs2_alloc_block(struct gfs2_inode *ip, u6
[all...]
H A Dinode.c45 struct gfs2_inode *ip = GFS2_I(inode); local
48 if (ip->i_no_addr == *no_addr)
56 struct gfs2_inode *ip = GFS2_I(inode); local
60 ip->i_no_addr = *no_addr;
83 struct gfs2_inode *ip = GFS2_I(inode); local
86 if (ip->i_no_addr == data->no_addr) {
98 struct gfs2_inode *ip = GFS2_I(inode); local
104 ip->i_no_addr = data->no_addr;
171 struct gfs2_inode *ip; local
176 ip
260 struct gfs2_inode *ip; local
335 gfs2_dinode_in(struct gfs2_inode *ip, const void *buf) argument
408 gfs2_inode_refresh(struct gfs2_inode *ip) argument
429 gfs2_dinode_dealloc(struct gfs2_inode *ip) argument
495 gfs2_change_nlink(struct gfs2_inode *ip, int diff) argument
806 link_dinode(struct gfs2_inode *dip, const struct qstr *name, struct gfs2_inode *ip) argument
877 gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip) argument
992 __gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr) argument
1029 gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr) argument
1045 gfs2_dinode_out(const struct gfs2_inode *ip, void *buf) argument
1082 gfs2_dinode_print(const struct gfs2_inode *ip) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/env/
H A Denv_failchk.c35 DB_THREAD_INFO *ip; local
56 ENV_ENTER(env, ip);
80 err: ENV_LEAVE(env, ip);
164 DB_THREAD_INFO *ip, *np; local
178 ip = SH_TAILQ_FIRST(&htab[i], __db_thread_info);
179 for (; ip != NULL; ip = np) {
180 np = SH_TAILQ_NEXT(ip,
182 __env_alloc_free(infop, ip);
204 DB_THREAD_INFO *ip; local
264 DB_THREAD_INFO *ip; local
291 DB_THREAD_INFO *ip; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dinterface.c36 Try and find an interface that matches an ip. If we cannot, return NULL
38 static struct interface *iface_find(struct in_addr ip, BOOL CheckMask) argument
41 if (is_zero_ip(ip)) return local_interfaces;
45 if (same_net(i->ip,ip,i->nmask)) return i;
46 } else if ((i->ip).s_addr == ip.s_addr) return i;
55 static void add_interface(struct in_addr ip, struct in_addr nmask) argument
58 if (iface_find(ip, False)) {
59 DEBUG(3,("not adding duplicate interface %s\n",inet_ntoa(ip)));
101 struct in_addr ip, nmask; local
268 ismyip(struct in_addr ip) argument
351 iface_ip(struct in_addr ip) argument
360 iface_local(struct in_addr ip) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/lib/
H A Duaccess.S31 rsb ip, ip, #4
32 cmp ip, #2
39 sub r2, r2, ip
46 ands ip, r0, #3
50 ands ip, r1, #3
58 addmi ip, r2, #4
62 mov ip, r0, lsl #32 - PAGE_SHIFT @ On each page, use a ld/st??t instruction
63 rsb ip, ip, #
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-sl.c40 #include "ip.h"
48 static void sliplink_print(const u_char *, const struct ip *, u_int);
49 static void compressed_sl_print(const u_char *, const struct ip *, u_int, int);
56 register const struct ip *ip; local
65 ip = (struct ip *)(p + SLIP_HDRLEN);
68 sliplink_print(p, ip, length);
70 switch (IP_V(ip)) {
72 ip_print(gndo, (u_char *)ip, lengt
91 register const struct ip *ip; local
113 sliplink_print(register const u_char *p, register const struct ip *ip, register u_int length) argument
191 compressed_sl_print(const u_char *chdr, const struct ip *ip, u_int length, int dir) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/net/
H A DKademliaUDPListener.h61 uint32_t ip; member in struct:Kademlia::FetchNodeID_Struct
67 #define DebugSendF(what, ip, port) AddDebugLogLineN(logClientKadUDP, what + wxString(wxT(" to ")) + KadIPPortToString(ip, port))
68 #define DebugRecvF(what, ip, port) AddDebugLogLineN(logClientKadUDP, what + wxString(wxT(" from ")) + KadIPPortToString(ip, port))
70 #define DebugSend(what, ip, port) DebugSendF(wxSTRINGIZE_T(what), ip, port)
71 #define DebugRecv(what, ip, port) DebugRecvF(wxSTRINGIZE_T(what), ip, port)
78 void Bootstrap(uint32_t ip, uint16_
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dbfs_fs.h69 #define BFS_NZFILESIZE(ip) \
70 ((le32_to_cpu((ip)->i_eoffset) + 1) - le32_to_cpu((ip)->i_sblock) * BFS_BSIZE)
72 #define BFS_FILESIZE(ip) \
73 ((ip)->i_sblock == 0 ? 0 : BFS_NZFILESIZE(ip))
75 #define BFS_FILEBLOCKS(ip) \
76 ((ip)->i_sblock == 0 ? 0 : (le32_to_cpu((ip)->i_eblock) + 1) - le32_to_cpu((ip)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/trace/events/
H A Dlock.h16 struct lockdep_map *next_lock, unsigned long ip),
18 TP_ARGS(lock, subclass, trylock, read, check, next_lock, ip),
40 TP_PROTO(struct lockdep_map *lock, unsigned long ip),
42 TP_ARGS(lock, ip),
59 TP_PROTO(struct lockdep_map *lock, unsigned long ip),
61 TP_ARGS(lock, ip)
68 TP_PROTO(struct lockdep_map *lock, unsigned long ip),
70 TP_ARGS(lock, ip)
75 TP_PROTO(struct lockdep_map *lock, unsigned long ip),
77 TP_ARGS(lock, ip)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/acorn/
H A Dmatch.s23 ip RN 12 label
86 LDR ip, [pc, #|__strstart|-.-8]
87 LDR ip, [ip]
88 ADD r2, lr, ip
91 SUBS ip, ip, #MAX_DIST-250 ; if r6 > MAX_DIST
92 SUBCSS r6, ip, #250 ; r6 = r6 - MAXDIST
98 SUB ip, r5, #1
99 LDRB r8, [r2, ip]
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/kernel/
H A Dftrace.c33 static int ftrace_modify_code(unsigned long ip, const unsigned char *code, argument
36 int ret = probe_kernel_write((void *)ip, (void *)code, len);
37 flush_icache_range(ip, ip + len);
45 return ftrace_modify_code(rec->ip, mnop, sizeof(mnop));
54 bfin_make_pcrel24(&call[2], rec->ip + 2, addr);
57 return ftrace_modify_code(rec->ip, call, sizeof(call));
63 unsigned long ip = (unsigned long)&ftrace_call; local
64 bfin_make_pcrel24(call, ip, func);
65 return ftrace_modify_code(ip, cal
86 unsigned long ip = (unsigned long)&ftrace_graph_call; local
[all...]

Completed in 686 milliseconds

1234567891011>>