OpenBSD CVS

CVS log for src/share/man/man9/VOP_LOOKUP.9


[BACK] Up to [local] / src / share / man / man9

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.46 / (download) - annotate - [select for diffs], Sun Jun 26 05:20:42 2022 UTC (23 months ago) by visa
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, HEAD
Changes since 1.45: +2 -32 lines
Diff to previous 1.45 (colored)

Remove unused VOP_POLL().

OK mpi@

Revision 1.45 / (download) - annotate - [select for diffs], Sun Dec 12 09:14:58 2021 UTC (2 years, 5 months ago) by visa
Branch: MAIN
CVS Tags: OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.44: +8 -5 lines
Diff to previous 1.44 (colored)

Add vnode parameter to VOP_STRATEGY()

Pass the device vnode as a parameter to VOP_STRATEGY() to allow calling
the correct vop_strategy callback. Now the vnode is also available
in the callback.

OK mpi@

Revision 1.44 / (download) - annotate - [select for diffs], Sat Oct 6 23:08:13 2018 UTC (5 years, 7 months ago) by beck
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.43: +13 -6 lines
Diff to previous 1.43 (colored)

Stop telling oversimplifying lies about whether or not VOP_LOOKUP will
return the original vnode to you locked or unlocked. Just admit that it
depends...
ok guenther@

Revision 1.43 / (download) - annotate - [select for diffs], Thu Jun 7 13:37:27 2018 UTC (5 years, 11 months ago) by visa
Branch: MAIN
Changes since 1.42: +4 -5 lines
Diff to previous 1.42 (colored)

Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible for
unlocking the directory vnode.

OK mpi@, helg@

Revision 1.42 / (download) - annotate - [select for diffs], Mon Jun 4 19:42:54 2018 UTC (5 years, 11 months ago) by kn
Branch: MAIN
Changes since 1.41: +3 -3 lines
Diff to previous 1.41 (colored)

Sync VFS documentation with reality

Missed during the "Namecache revamp" in 2009.

Reported by Georg Bege <georg at bege dot email>, thanks.

OK visa jmc mpi jca

Revision 1.41 / (download) - annotate - [select for diffs], Sat Apr 28 03:13:04 2018 UTC (6 years, 1 month ago) by visa
Branch: MAIN
Changes since 1.40: +3 -5 lines
Diff to previous 1.40 (colored)

Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always
curproc that does the locking or unlocking, so the proc parameter
is pointless and can be dropped.

OK mpi@, deraadt@

Revision 1.40 / (download) - annotate - [select for diffs], Tue Nov 28 12:06:10 2017 UTC (6 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.39: +7 -13 lines
Diff to previous 1.39 (colored)

zap trailing whitespace, and zap some Tn while here;

Revision 1.39 / (download) - annotate - [select for diffs], Tue Nov 28 11:17:01 2017 UTC (6 years, 6 months ago) by helg
Branch: MAIN
Changes since 1.38: +3 -2 lines
Diff to previous 1.38 (colored)

Correct the description for VOP_RENAME to reflect that tvp is unlocked
on exit.

ok mpi@

Revision 1.38 / (download) - annotate - [select for diffs], Wed Apr 26 05:55:27 2017 UTC (7 years, 1 month ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.37: +5 -4 lines
Diff to previous 1.37 (colored)

tweak previous;

Revision 1.37 / (download) - annotate - [select for diffs], Wed Apr 26 02:43:34 2017 UTC (7 years, 1 month ago) by beck
Branch: MAIN
Changes since 1.36: +4 -7 lines
Diff to previous 1.36 (colored)

We are men of action. Lies do not become us.

Revision 1.36 / (download) - annotate - [select for diffs], Sun Jun 19 11:54:33 2016 UTC (7 years, 11 months ago) by natano
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.35: +47 -8 lines
Diff to previous 1.35 (colored)

Remove the lockmgr() API. It is only used by filesystems, where it is a
trivial change to use rrw locks instead. All it needs is LK_* defines
for the RW_* flags.

tested by naddy and sthen on package building infrastructure
input and ok jmc mpi tedu

Revision 1.35 / (download) - annotate - [select for diffs], Mon May 23 09:31:28 2016 UTC (8 years ago) by natano
Branch: MAIN
Changes since 1.34: +1 -17 lines
Diff to previous 1.34 (colored)

VOP_REALLOCBLKS() and related code is unused since the removal of
cluster_write().
ok beck zhuk

Revision 1.34 / (download) - annotate - [select for diffs], Sat Mar 19 15:03:55 2016 UTC (8 years, 2 months ago) by jmc
Branch: MAIN
Changes since 1.33: +3 -3 lines
Diff to previous 1.33 (colored)

uio -> uiomove;

Revision 1.33 / (download) - annotate - [select for diffs], Sat Mar 19 12:04:15 2016 UTC (8 years, 2 months ago) by natano
Branch: MAIN
Changes since 1.32: +2 -5 lines
Diff to previous 1.32 (colored)

Remove the unused flags argument from VOP_UNLOCK().

torture tested on amd64, i386 and macppc
ok beck mpi stefan
"the change looks right" deraadt

Revision 1.32 / (download) - annotate - [select for diffs], Wed Dec 2 11:03:40 2015 UTC (8 years, 6 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.31: +38 -26 lines
Diff to previous 1.31 (colored)

Tweak previous:  Move struct vattr out of the function table, it's used
by more than two functions, and use .Vt for the struct name.
OK jmc@ tedu@

Revision 1.31 / (download) - annotate - [select for diffs], Wed Dec 2 10:20:46 2015 UTC (8 years, 6 months ago) by jmc
Branch: MAIN
Changes since 1.30: +4 -2 lines
Diff to previous 1.30 (colored)

add VOP_{GET,SET}ATTR to NAME too;

Revision 1.30 / (download) - annotate - [select for diffs], Wed Dec 2 09:46:29 2015 UTC (8 years, 6 months ago) by tedu
Branch: MAIN
Changes since 1.29: +28 -2 lines
Diff to previous 1.29 (colored)

merge important bits of GETATTR into VOP_LOOKUP.
provoked by jmc (and reminded that i failed to commit by ingo)

Revision 1.29 / (download) - annotate - [select for diffs], Mon Nov 23 17:53:57 2015 UTC (8 years, 6 months ago) by jmc
Branch: MAIN
Changes since 1.28: +36 -3 lines
Diff to previous 1.28 (colored)

add missing NAME entries;
feedback/ok schwarze

Revision 1.28 / (download) - annotate - [select for diffs], Sun Nov 15 14:55:22 2015 UTC (8 years, 6 months ago) by jmc
Branch: MAIN
Changes since 1.27: +3 -3 lines
Diff to previous 1.27 (colored)

word fix;

Revision 1.27 / (download) - annotate - [select for diffs], Sun Jul 5 18:24:50 2015 UTC (8 years, 10 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.26: +6 -3 lines
Diff to previous 1.26 (colored)

Document the new 'fflag' argument to VOP_POLL().
From Martin Natano

Revision 1.26 / (download) - annotate - [select for diffs], Mon Sep 8 01:27:55 2014 UTC (9 years, 8 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.25: +5 -3 lines
Diff to previous 1.25 (colored)

obvious cases of missing .An;
found with the new mandoc(1) MANDOCERR_AN_MISSING warning;
no text changes

Revision 1.25 / (download) - annotate - [select for diffs], Mon Oct 7 01:50:26 2013 UTC (10 years, 7 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.24: +4 -16 lines
Diff to previous 1.24 (colored)

getdirentries(2) is dead; long live getdents(2)!

confirmation that getdirentries(2) is unused by ports from sthen@ and naddy@

Revision 1.24 / (download) - annotate - [select for diffs], Tue Jun 11 16:42:05 2013 UTC (10 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.23: +4 -4 lines
Diff to previous 1.23 (colored)

final removal of daddr64_t.  daddr_t has been 64 bit for a long enough
test period; i think 3 years ago the last bugs fell out.
ok otto beck others

Revision 1.23 / (download) - annotate - [select for diffs], Tue Jun 4 19:27:03 2013 UTC (10 years, 11 months ago) by schwarze
Branch: MAIN
Changes since 1.22: +3 -3 lines
Diff to previous 1.22 (colored)

Replace old-fashioned .Fd by new-fangled .In for #include lines.
Diff from Jan Klemkow <j dot klemkow at wemelug dot de> on tech@.
No objection from jmc@ against this type of change.

Revision 1.22 / (download) - annotate - [select for diffs], Tue Sep 7 00:10:12 2010 UTC (13 years, 8 months ago) by thib
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.21: +2 -46 lines
Diff to previous 1.21 (colored)

Update the documentation reflecting the latest churn in the vop layer.
By updating I mean remove two sections (that where made wrong and where wrong
before the churn) and tweak a few sentances.

ok deraadt

Revision 1.21 / (download) - annotate - [select for diffs], Thu May 21 12:24:22 2009 UTC (15 years ago) by thib
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6
Changes since 1.20: +1 -3 lines
Diff to previous 1.20 (colored)

IO_METASYNC has been a noop since around 4.4BSD-Lite, the
idea never really caught on anywhere so retire it.

"gank this shizzle", blambert@

Revision 1.20 / (download) - annotate - [select for diffs], Thu May 31 19:20:00 2007 UTC (17 years ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored)

convert to new .Dd format;

Revision 1.19 / (download) - annotate - [select for diffs], Tue Jan 16 17:52:58 2007 UTC (17 years, 4 months ago) by thib
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.18: +1 -10 lines
Diff to previous 1.18 (colored)

Remove commented out references to VOP_LEASE();

ok jmc@ (who pointed this out to me)

Revision 1.18 / (download) - annotate - [select for diffs], Mon Oct 16 11:27:52 2006 UTC (17 years, 7 months ago) by pedro
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored)

Use daddr64_t for logical blocks, okay krw@ thib@ mickey@

Revision 1.17 / (download) - annotate - [select for diffs], Wed Oct 4 14:04:06 2006 UTC (17 years, 8 months ago) by pedro
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored)

Match reality when describing VOP_BMAP(), bad pedro

Revision 1.16 / (download) - annotate - [select for diffs], Fri Jun 17 21:36:20 2005 UTC (18 years, 11 months ago) by drahn
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.15: +1 -47 lines
Diff to previous 1.15 (colored)

Extended Attributes was a piece to get to ACLs, however ACLs have not
been worked on, so EA is pointless to maintain. go ahead jmc@

Revision 1.15 / (download) - annotate - [select for diffs], Thu Jun 9 02:59:12 2005 UTC (18 years, 11 months ago) by jaredy
Branch: MAIN
Changes since 1.14: +689 -143 lines
Diff to previous 1.14 (colored)

- add documentation for remaining vnode operations
- improve page layout
- add MLINKS to, sort, and fix some typos in the Makefile

help & ok marius, tedu, pedro, jmc

Revision 1.14 / (download) - annotate - [select for diffs], Wed Jun 1 10:20:25 2005 UTC (19 years ago) by pedro
Branch: MAIN
Changes since 1.13: +1 -20 lines
Diff to previous 1.13 (colored)

VOP_WHITEOUT() is gone, okay jmc@

Revision 1.13 / (download) - annotate - [select for diffs], Thu Feb 5 14:25:52 2004 UTC (20 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.12: +6 -6 lines
Diff to previous 1.12 (colored)

make .Nm match .Dt to avoid screwy apropos(1) output;
found by pb@

Revision 1.12 / (download) - annotate - [select for diffs], Thu Oct 23 18:31:34 2003 UTC (20 years, 7 months ago) by jmc
Branch: MAIN
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored)

typos from Jared Yanovich;

Revision 1.11 / (download) - annotate - [select for diffs], Fri Jul 25 02:27:33 2003 UTC (20 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.10: +1 -1 lines
Diff to previous 1.10 (colored)

change things back.  (another note: with this change, suddenly there was
no VOP_LOOKUP(9) page at all.. geez)

Revision 1.10, Thu Jul 24 20:15:45 2003 UTC (20 years, 10 months ago) by mickey
Branch: MAIN
Changes since 1.9: +1 -1 lines
FILE REMOVED

rename VOP_LOOKUP.9 into vnodeops.9 for nicer xreffing.
a few pages i wrote being high on acetyl salicylic acid.
vfs(9) from netbsd.

Revision 1.9 / (download) - annotate - [select for diffs], Fri Jun 6 20:56:32 2003 UTC (21 years ago) by jmc
Branch: MAIN
Changes since 1.8: +3 -2 lines
Diff to previous 1.8 (colored)

- section reorder
- macro fixes
- kill whitespace at EOL
- use .Ox for OpenBSD, .Fx for FreeBSD

Revision 1.8 / (download) - annotate - [select for diffs], Wed Apr 30 04:53:18 2003 UTC (21 years, 1 month ago) by tedu
Branch: MAIN
Changes since 1.7: +52 -1 lines
Diff to previous 1.7 (colored)

some notes about VOP_PRINT, VOP_STRATEGY, VOP_REALLOCBLKS, and VOP_WHITEOUT

Revision 1.7 / (download) - annotate - [select for diffs], Tue Apr 15 04:14:29 2003 UTC (21 years, 1 month ago) by jmc
Branch: MAIN
Changes since 1.6: +25 -21 lines
Diff to previous 1.6 (colored)

typos;

VOP, crypto and disklabel ok tedu@
audio(9) ok naddy@

Revision 1.6 / (download) - annotate - [select for diffs], Tue Mar 18 12:48:31 2003 UTC (21 years, 2 months ago) by david
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.5: +3 -1 lines
Diff to previous 1.5 (colored)

add missing rcs id and start new sentence on a new line.
ok tedu@

Revision 1.5 / (download) - annotate - [select for diffs], Wed Mar 12 13:12:27 2003 UTC (21 years, 2 months ago) by tedu
Branch: MAIN
Changes since 1.4: +5 -7 lines
Diff to previous 1.4 (colored)

should -> must when discussing locking.  it's not optional.

Revision 1.4 / (download) - annotate - [select for diffs], Wed Mar 12 13:06:18 2003 UTC (21 years, 2 months ago) by tedu
Branch: MAIN
Changes since 1.3: +101 -1 lines
Diff to previous 1.3 (colored)

add VOP_CREATE, VOP_LINK, VOP_READLINK, VOP_SYMLINK

add some implementation notes for file system authors

ok jmc@

Revision 1.3 / (download) - annotate - [select for diffs], Wed Mar 12 09:41:14 2003 UTC (21 years, 2 months ago) by tedu
Branch: MAIN
Changes since 1.2: +46 -0 lines
Diff to previous 1.2 (colored)

add VOP_FSYNC, VOP_ISLOCKED, and VOP_REMOVE
only 28 more to go!

ok jmc@

Revision 1.2 / (download) - annotate - [select for diffs], Tue Mar 11 20:28:33 2003 UTC (21 years, 2 months ago) by tedu
Branch: MAIN
Changes since 1.1: +137 -2 lines
Diff to previous 1.1 (colored)

VOP_LOCK, VOP_UNLOCK, VOP_RMDIR, VOP_MKDIR, VOP_SETEXTATTR, VOP_GETEXTATTR,
VOP_REVOKE, VOP_RECLAIM

looked over and input from art@ david@ jmc@

Revision 1.1 / (download) - annotate - [select for diffs], Mon Mar 10 20:20:29 2003 UTC (21 years, 2 months ago) by tedu
Branch: MAIN

add a man page for the VOP functions.  currently only describes the
general idea and VOP_LOOKUP.

ok costa@ deraadt@ jmc@

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.